Skip to content
Open
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
105 changes: 105 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,108 @@ steps:
env:
OCL_ICD_FILENAMES: "libnvidia-opencl.so.1"
timeout_in_minutes: 60

- label: "1.11 macos arm"
plugins:
- JuliaCI/julia#v1:
version: "1.11"
- JuliaCI/julia-coverage#v1:
codecov: true
commands: |
julia --project -e '
using Pkg

println("--- :julia: Instantiating project")
Pkg.add("pocl_jll")
Pkg.add("InteractiveUtils")
Pkg.develop(path="lib/intrinsics")

println("+++ :julia: Running tests")
using InteractiveUtils
InteractiveUtils.versioninfo()
Pkg.test(; coverage=true, test_args=`--platform=pocl --verbose --jobs=2`)'
agents:
queue: "juliaecosystem"
os: "macos"
arch: "aarch64"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120

- label: "1.11 macos intel"
plugins:
- JuliaCI/julia#v1:
version: "1.11"
- JuliaCI/julia-coverage#v1:
codecov: true
commands: |
julia --project -e '
using Pkg

println("--- :julia: Instantiating project")
Pkg.add("pocl_jll")
Pkg.add("InteractiveUtils")
Pkg.develop(path="lib/intrinsics")

println("+++ :julia: Running tests")
using InteractiveUtils
InteractiveUtils.versioninfo()
Pkg.test(; coverage=true, test_args=`--platform=pocl --verbose --jobs=2`)'
agents:
queue: "juliaecosystem"
os: "macos"
arch: "x86_64"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120


- label: "1.10 macos arm"
plugins:
- JuliaCI/julia#v1:
version: "1.10"
- JuliaCI/julia-coverage#v1:
codecov: true
commands: |
julia --project -e '
using Pkg

println("--- :julia: Instantiating project")
Pkg.add("pocl_jll")
Pkg.add("InteractiveUtils")
Pkg.develop(path="lib/intrinsics")

println("+++ :julia: Running tests")
using InteractiveUtils
InteractiveUtils.versioninfo()
Pkg.test(; coverage=true, test_args=`--platform=pocl --verbose --jobs=2`)'
agents:
queue: "juliaecosystem"
os: "macos"
arch: "aarch64"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120

- label: "1.10 macos intel"
plugins:
- JuliaCI/julia#v1:
version: "1.10"
- JuliaCI/julia-coverage#v1:
codecov: true
commands: |
julia --project -e '
using Pkg

println("--- :julia: Instantiating project")
Pkg.add("pocl_jll")
Pkg.add("InteractiveUtils")
Pkg.develop(path="lib/intrinsics")

println("+++ :julia: Running tests")
using InteractiveUtils
InteractiveUtils.versioninfo()
Pkg.test(; coverage=true, test_args=`--platform=pocl --verbose --jobs=2`)'
agents:
queue: "juliaecosystem"
os: "macos"
arch: "x86_64"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 120
4 changes: 2 additions & 2 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.memory_backend }} - PoCL ${{ matrix.pocl }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
timeout-minutes: 180
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
uses: julia-actions/julia-runtest@v1
if: runner.os != 'Windows'
with:
test_args: '--platform=pocl'
test_args: '--platform=pocl --verbose --jobs=1'

- name: Setup BusyBox
if: runner.os == 'Windows'
Expand Down
Loading