Skip to content

Commit

Permalink
Run CI with Julia 1.6 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Mar 6, 2021
1 parent 918609c commit 0df3bd9
Show file tree
Hide file tree
Showing 8 changed files with 543 additions and 7 deletions.
23 changes: 19 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
steps:
- label: "Julia v1"
- label: "Julia v1.5"
plugins:
- JuliaCI/julia#v1:
version: "1"
version: "1.5"
- JuliaCI/julia-coverage#v1:
codecov: true
commands:
- julia -e 'using Pkg; Pkg.add(name="Run", version="0.1")'
- julia -e 'using Run; Run.prepare("test/environments/main")'
- julia -e 'using Run; Run.test(project="test/environments/main")'
- julia -e 'using Run; Run.prepare("test/environments/jl15")'
- julia -e 'using Run; Run.test(project="test/environments/jl15")'
agents:
queue: "juliagpu"
cuda: "*"
timeout_in_minutes: 60

- label: "Julia v1.6"
plugins:
- JuliaCI/julia#v1:
version: "1.6-nightly"
- JuliaCI/julia-coverage#v1:
codecov: true
commands:
- julia -e 'using Pkg; Pkg.add(name="Run", version="0.1")'
- julia -e 'using Run; Run.prepare("test/environments/jl16")'
- julia -e 'using Run; Run.test(project="test/environments/jl16")'
agents:
queue: "juliagpu"
cuda: "*"
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/cpu_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: ['1']
include:
- julia-version: '1.5'
envname: 'jl15'
- julia-version: '~1.6.0-rc1'
envname: 'jl16'
fail-fast: false
env:
CUDAFOLDS_JL_TEST_GPU: "false"
Expand All @@ -26,8 +30,8 @@ jobs:
- name: Set up ~/.julia/registries/General as a Git repository (using julia-buildpkg)
uses: julia-actions/julia-buildpkg@v1
- run: julia -e 'using Pkg; pkg"add Run@0.1"'
- run: julia -e 'using Run; Run.prepare("test/environments/main")'
- run: julia -e 'using Run; Run.test(project="test/environments/main")'
- run: julia -e 'using Run; Run.prepare("test/environments/${{ matrix.envname }}")'
- run: julia -e 'using Run; Run.test(project="test/environments/${{ matrix.envname }}")'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
Expand Down
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 0df3bd9

Please sign in to comment.