Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
.github/workflows/tox.yml: Use env.GITHUB_WORKSPACE
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Oct 18, 2021
1 parent a40d706 commit dd2bc15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
- uses: actions/download-artifact@v2
with:
name: ${{ env.LOCAL_ARTIFACT_NAME }}
path: ${{ env.RUNNER_TEMP }}
path: ${{ env.GITHUB_WORKSPACE }}
if: contains(matrix.stage, '2')
- name: Extract sage-local artifact
# This is macOS tar -- cannot use --listed-incremental
run: |
.github/workflows/extract-sage-local.sh $RUNNER_TEMP/sage-local-*.tar
.github/workflows/extract-sage-local.sh $GITHUB_WORKSPACE/sage-local-*.tar
if: contains(matrix.stage, '2')
- name: Build and test with tox
# We use a high parallelization on purpose in order to catch possible parallelization bugs in the build scripts.
Expand Down Expand Up @@ -105,10 +105,10 @@ jobs:
# This is macOS tar -- cannot use --remove-files.
# We remove the $SAGE_LOCAL/lib64 link, which will be recreated by the next stage.
run: |
(cd .tox/$TOX_ENV && rm -f "local/lib64" && tar -cf $RUNNER_TEMP/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar $(pwd))
(cd .tox/$TOX_ENV && rm -f "local/lib64" && tar -cf $GITHUB_WORKSPACE/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar $(pwd))
if: contains(matrix.stage, '1')
- uses: actions/upload-artifact@v2
with:
path: ${{ env.RUNNER_TEMP }}/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar
path: ${{ env.GITHUB_WORKSPACE }}/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar
name: ${{ env.LOCAL_ARTIFACT_NAME }}
if: always()

0 comments on commit dd2bc15

Please sign in to comment.