Skip to content

Commit

Permalink
preparatory work for v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Mar 11, 2021
1 parent 85bb612 commit fe33711
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
24 changes: 22 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
steps:
- label: "GPU integration"
- label: "GPU v1.5"
plugins:
- JuliaCI/julia#v1:
version: '1.5'
version: "1.5"
- JuliaCI/julia-test#v1: ~
agents:
queue: "juliagpu"
cuda: "*"
timeout_in_minutes: 60

- label: "GPU v1.6-nightly" # change to "v1" when 1.6 is out
plugins:
- JuliaCI/julia#v1:
version: "1.6-nightly" # change to "1" when 1.6 is out
- JuliaCI/julia-test#v1: ~
agents:
queue: "juliagpu"
cuda: "*"
timeout_in_minutes: 60

- label: "GPU nightly"
plugins:
- JuliaCI/julia#v1:
version: "nightly"
- JuliaCI/julia-test#v1: ~
agents:
queue: "juliagpu"
cuda: "*"
timeout_in_minutes: 60
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
version:
- '1.5' # Replace this with the minimum Julia version that your package supports.
# - '1' # automatically expands to the latest stable 1.x release of Julia
- '1.6-nightly' # change to '1' when v1.6 is out
- 'nightly'
os:
- ubuntu-latest
Expand All @@ -36,13 +36,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
# `allow-failure` not available yet https://github.com/actions/toolkit/issues/399
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
env:
cache-name: cache-artifacts
with:
Expand All @@ -53,11 +50,8 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: codecov/codecov-action@v1
continue-on-error: ${{ matrix.version == 'nightly' }}
with:
file: lcov.info

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ docs/build/
docs/site/
deps
.vscode
# Manifest.toml
Manifest.toml
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Flux"
uuid = "587475ba-b771-5e3f-ad9e-33799f191a9c"
version = "0.12.0-dev"
version = "0.12.0"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down

0 comments on commit fe33711

Please sign in to comment.