Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/oscar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
env:
PR_NUMBER: ${{ github.event.number || 0 }}
JULIA_PKG_SERVER: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -57,7 +56,6 @@ jobs:
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
env:
PR_NUMBER: ${{ github.event.number || 0 }}
JULIA_PKG_SERVER: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix: ${{fromJSON(needs.generatematrix.outputs.matrix)}}
Expand Down Expand Up @@ -112,11 +110,15 @@ jobs:
run: |
echo '${{ env.oscar_run_doctests }}'
julia --color=yes --project=oscar-dev/project/ -e '${{ env.oscar_run_doctests }}'
- name: "depotpath"
if: always()
id: depotpath
run: echo "depot=${JULIA_DEPOT_PATH:-$HOME/.julia}" >> $GITHUB_OUTPUT
- name: Archive wrappers
if: always()
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: "wrappers-${{ hashFiles('Project.toml', 'Manifest.toml') }}"
name: wrappers-${{ join(matrix.os) }}-${{ matrix.julia-version }}-${{ hashFiles('oscar-dev/project/Manifest.toml') }}
path: |
~/.julia/scratchspaces/d720cf60-89b5-51f5-aff5-213f193123e7/**/*.cpperl
${{ steps.depotpath.outputs.depot }}/scratchspaces/d720cf60-89b5-51f5-aff5-213f193123e7/**/*.cpperl
3 changes: 0 additions & 3 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
# Maps tcp port 27017 on service container to the host
- 27017:27017
env:
JULIA_PKG_SERVER: ""
POLYDB_TEST_URI: "mongodb://admin:admin@localhost:27017/?authSource=admin"
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -90,8 +89,6 @@ jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ contains(matrix.julia-version, 'nightly') }}
env:
JULIA_PKG_SERVER: ""
strategy:
matrix:
julia-version:
Expand Down
Loading