Skip to content

Commit 29397bf

Browse files
committed
Add GPU path, fast path, parallelism and 1.6
1 parent 7b67124 commit 29397bf

File tree

7 files changed

+155
-132
lines changed

7 files changed

+155
-132
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ steps:
1919
Pkg.rm("ReTestItems") # not compatible with 1.6
2020
end'
2121
env:
22-
GROUP: "CUDA" # TODO there are zero tests under this group
22+
GROUP: "All"
23+
TEST_FAST: true
24+
TEST_WORKERS: 4
2325
if: build.message !~ /\[skip tests\]/
2426
timeout_in_minutes: 180
2527
matrix:

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
env:
2828
GROUP: ${{ matrix.suite }}
29+
TEST_FAST: ${{ matrix.version != '1' || matrix.os != 'ubuntu-latest' }}
2930
strategy:
3031
fail-fast: false
3132
matrix:
3233
version:
33-
- '1' # Replace this with the minimum Julia version that your package supports.
34+
- '1.6' # Replace this with the minimum Julia version that your package supports.
35+
- '1'
3436
- 'nightly'
3537
os:
3638
- ubuntu-latest

0 commit comments

Comments
 (0)