Skip to content

Commit

Permalink
Merge pull request #187 from JuliaGPU/jps/julia-1.7
Browse files Browse the repository at this point in the history
LB Julia to 1.7, upgrade to ROCm 4.2
  • Loading branch information
jpsamaroo authored Feb 15, 2022
2 parents 769e667 + c22fd01 commit 7e79f2f
Show file tree
Hide file tree
Showing 34 changed files with 1,176 additions and 831 deletions.
40 changes: 30 additions & 10 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
steps:
- label: "Julia 1.6 - GPUArrays 8"
- label: "Julia 1.7 - GPUArrays 8"
plugins:
- JuliaCI/julia#v1:
version: 1.6-nightly
version: 1.7-nightly
- JuliaCI/julia-test#v1.4:
- JuliaCI/julia-coverage#v1:
codecov: true
Expand All @@ -12,12 +12,30 @@ steps:
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120
env:
JULIA_AMDGPU_HSA_MUST_LOAD: "1"
JULIA_AMDGPU_CORE_MUST_LOAD: "1"
JULIA_AMDGPU_HIP_MUST_LOAD: "1"

- label: "Julia 1.6 - GPUArrays 7"
- label: "Julia 1.8 - GPUArrays 8 - No artifacts"
plugins:
- JuliaCI/julia#v1:
version: 1.6-nightly
version: 1.8-nightly
- JuliaCI/julia-test#v1.4:
- JuliaCI/julia-coverage#v1:
codecov: true
agents:
queue: "juliagpu"
rocm: "*"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120
env:
JULIA_AMDGPU_CORE_MUST_LOAD: "1"
JULIA_AMDGPU_HIP_MUST_LOAD: "1"
JULIA_AMDGPU_DISABLE_ARTIFACTS: "1"

- label: "Julia 1.7 - GPUArrays 7"
plugins:
- JuliaCI/julia#v1:
version: 1.7-nightly
- JuliaCI/julia-test#v1.4:
custom_manifest: Manifest.toml.gpuarrays-7
- JuliaCI/julia-coverage#v1:
Expand All @@ -28,12 +46,13 @@ steps:
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120
env:
JULIA_AMDGPU_HSA_MUST_LOAD: "1"
JULIA_AMDGPU_CORE_MUST_LOAD: "1"
JULIA_AMDGPU_HIP_MUST_LOAD: "1"

- label: "Julia 1.6 - GPUArrays 6"
- label: "Julia 1.7 - GPUArrays 6"
plugins:
- JuliaCI/julia#v1:
version: 1.6-nightly
version: 1.7-nightly
- JuliaCI/julia-test#v1.4:
custom_manifest: Manifest.toml.gpuarrays-6
- JuliaCI/julia-coverage#v1:
Expand All @@ -44,12 +63,13 @@ steps:
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120
env:
JULIA_AMDGPU_HSA_MUST_LOAD: "1"
JULIA_AMDGPU_CORE_MUST_LOAD: "1"
JULIA_AMDGPU_HIP_MUST_LOAD: "1"

- label: "Documentation"
plugins:
- JuliaCI/julia#v1:
version: 1.6-nightly
version: 1.7-nightly
command: |
julia --project -e '
println("--- :julia: Instantiating project")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
# version: ${{ steps.julia_compat.outputs.version }}
version: "1.6-nightly"
version: "1.7-nightly"
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment:
types:
- created
workflow_dispatch:

jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI (Julia 1.6-nightly)
name: CI (Julia 1.7-nightly)
on:
push:
branches:
Expand All @@ -9,14 +9,14 @@ defaults:
run:
shell: bash
jobs:
CI-julia-1-6-nightly:
name: CI-julia-1-6-nightly
CI-julia-1-7-nightly:
name: CI-julia-1-7-nightly
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6-nightly'
- '1.7-nightly'
os:
- ubuntu-latest
- macOS-latest
Expand Down
Loading

2 comments on commit 7e79f2f

@jpsamaroo
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/54655

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" 7e79f2f6cdc205e133ae6b49b61a037aba03a196
git push origin v0.3.0

Please sign in to comment.