-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump versions of artifact actions, plint and pdoc compat fixes (#126)
- Loading branch information
Showing
4 changed files
with
12 additions
and
11 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 |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
run: | | ||
pip install pdoc | ||
pip install -e . | ||
python -We -m pdoc -o html PyMPDATA_MPI | ||
PDOC_ALLOW_EXEC=1 python -We -m pdoc -o html PyMPDATA_MPI | ||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: JamesIves/[email protected] | ||
|
@@ -216,9 +216,9 @@ jobs: | |
pip install pytest-cov | ||
fi | ||
NUMBA_NUM_THREADS=3 mpiexec $_mpiexec_args -n ${{ matrix.mpi-np }} python -m pytest -p no:cacheprovider $COV_ARGS --timeout=600 --timeout_method=thread -s -vv -We tests/local; | ||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: plots | ||
name: plots-${{matrix.mpi-np}} | ||
path: plots | ||
- if: env.CODECOV_RUN == '1' | ||
uses: codecov/codecov-action@v4 | ||
|
@@ -246,7 +246,7 @@ jobs: | |
- run: twine check --strict dist/* | ||
|
||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
|
@@ -255,7 +255,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: [package,tests] | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
|
@@ -287,9 +287,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: [tests, devops_tests] | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: plots | ||
pattern: plots-* | ||
merge-multiple: true | ||
path: plots | ||
- run: | | ||
sudo apt install -y librsvg2-bin | ||
|
@@ -306,7 +307,7 @@ jobs: | |
done; | ||
done; | ||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: anims | ||
path: plots/*-anim.gif | ||
|
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