-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/npm_and_yarn/packages/experiment-…
…manager/jupyterlab/filebrowser-3.6.7
- Loading branch information
Showing
66 changed files
with
8,442 additions
and
1,246 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 |
---|---|---|
|
@@ -34,12 +34,23 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Free Up GitHub Actions Ubuntu Runner Disk Space | ||
uses: jlumbroso/[email protected] | ||
with: | ||
tool-cache: false | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
large-packages: true | ||
docker-images: false | ||
swap-storage: true | ||
|
||
- name: Download artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ inputs.wheel_artifact_name }} | ||
path: docker/${{ inputs.docker_folder }} | ||
- uses: mikefarah/[email protected].1 | ||
- uses: mikefarah/[email protected].2 | ||
|
||
- name: add whl and start files | ||
run: | | ||
|
@@ -80,7 +91,7 @@ jobs: | |
fi | ||
- name: Build docker | ||
uses: docker/build-push-action@v5 | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: docker/${{ inputs.docker_folder }} | ||
push: ${{ inputs.push }} | ||
|
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,51 @@ | ||
name: Collect tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
runs-on: | ||
default: ubuntu-latest | ||
type: string | ||
|
||
|
||
jobs: | ||
build-wheel: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
auto-update-conda: true | ||
miniforge-version: latest | ||
miniforge-variant: Mambaforge | ||
python-version: 3.11 | ||
path: ${{ env.CONDA }}/envs | ||
environment-file: environment.yml | ||
activate-environment: jupyterlab | ||
use-mamba: true | ||
|
||
- name: Cache Conda environment | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.CONDA }}/envs | ||
key: conda-environment-${{ runner.os }}-${{ hashFiles('environment.yml') }} | ||
restore-keys: | | ||
conda-environment-${{ runner.os }}- | ||
id: cache-conda | ||
|
||
- name: pytest | ||
shell: bash -l {0} | ||
run: | | ||
conda activate jupyterlab | ||
pip install --upgrade build | ||
mkdir -p /tmp/data | ||
pytest --collect-only -q | grep 'tests/' | jq -R . | jq -s . > test_list.json | ||
- name: Upload pytest output as artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test_list | ||
path: test_list.json |
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
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
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
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
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.