Skip to content

Commit

Permalink
Try to fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Dec 18, 2023
1 parent 9efc771 commit 652b793
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
arch: [x64]
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
path: "GPUArrays"
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand All @@ -33,11 +35,14 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@latest
- run: |
git config --global user.name Tester
git config --global user.email [email protected]
- uses: julia-actions/julia-runtest@latest
- name: Develop subpackages
run: |
julia --project -e '
using Pkg
ENV["JULIA_PKG_DEVDIR"] = dirname(pwd())
Pkg.develop(["GPUArraysCore", "JLArrays"])'
- name: Test
run: julia --project -e 'using Pkg; Pkg.test(; coverage=true)'
continue-on-error: ${{ matrix.version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
Expand All @@ -48,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
- uses: julia-actions/setup-julia@v1
with:
version: '1.8'
- name: Install dependencies
Expand Down

0 comments on commit 652b793

Please sign in to comment.