-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inital build script change wasm workflow trigger use new mamba action local build works localy =) local build works localy =) cleanup build with custom pkgs works via build.py make it verbose fixit ignore lite try to adapt build workflow adding cmake fixing env disable check links atm remove build dir after build changed path changed path changed path fix tests added ui tests
- Loading branch information
1 parent
416d8d1
commit 2f21a78
Showing
13 changed files
with
1,036 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: '*' | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Lint | ||
run: | | ||
cd lite | ||
set -eux | ||
jlpm | ||
jlpm run build | ||
rm -rf build | ||
jlpm run lint:check | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Build the extension | ||
run: | | ||
cd lite | ||
set -eux | ||
python -m build | ||
rm -rf build | ||
- name: Upload extension packages | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
path: lite/dist | ||
if-no-files-found: error | ||
|
||
test_isolated: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
architecture: 'x64' | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
- name: Install and Test | ||
run: | | ||
cd lite | ||
set -eux | ||
# Remove NodeJS, twice to take care of system and locally installed node versions. | ||
sudo rm -rf $(which node) | ||
sudo rm -rf $(which node) | ||
pip install "jupyterlab>=4.0.0,<5" jupyterlite_xeus_python*.whl | ||
jupyter labextension list | ||
jupyter labextension list 2>&1 | grep -ie "@jupyterlite/xeus-python-kernel.*OK" | ||
python -m jupyterlab.browser_check --no-browser-test | ||
python-tests-mamba-python: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
path: ./lite/dist | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Make sure the Mamba Python API is available | ||
run: | | ||
cd lite | ||
mamba install mamba | ||
python -c "from mamba.api import create" | ||
- name: Install | ||
run: pip install jupyterlite_xeus_python*.tar.gz | ||
working-directory: lite/dist | ||
|
||
- name: Run tests | ||
run: pytest -rP test_xeus_python_env.py | ||
working-directory: lite/tests | ||
|
||
python-tests-mamba: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
path: ./lite/dist | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Install | ||
run: pip install jupyterlite_xeus_python*.tar.gz | ||
working-directory: lite/dist | ||
|
||
- name: Run tests | ||
run: pytest -rP test_xeus_python_env.py | ||
working-directory: lite/tests | ||
|
||
python-tests-micromamba: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
path: ./lite/dist | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Install | ||
run: pip install jupyterlite_xeus_python*.tar.gz | ||
working-directory: lite/dist | ||
|
||
- name: Run tests | ||
run: pytest -rP test_xeus_python_env.py | ||
working-directory: lite/tests | ||
|
||
python-tests-conda: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: jupyterlite-xeus-python-dist-${{ github.run_number }} | ||
path: ./lite/dist | ||
|
||
- name: Install Conda environment with Micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
micromamba-version: '1.5.1-0' | ||
environment-file: lite/environment.yml | ||
cache-environment: true | ||
|
||
- name: Install | ||
run: pip install jupyterlite_xeus_python*.tar.gz | ||
working-directory: lite/dist | ||
|
||
- name: Run tests | ||
run: pytest -rP test_xeus_python_env.py | ||
working-directory: lite/tests | ||
|
||
|
||
# check_links: | ||
# name: Check Links | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 15 | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | ||
# - uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.