Skip to content

Commit 2eac7f4

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

File tree

7 files changed

+162
-136
lines changed

7 files changed

+162
-136
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: 7 additions & 3 deletions
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
@@ -61,13 +63,15 @@ jobs:
6163
- uses: julia-actions/cache@v1
6264
- uses: julia-actions/julia-buildpkg@v1
6365

66+
- name: Setup test env for 1.6
67+
if: ${{ matrix.version == '1.6' }}
68+
run: |
69+
julia --color=yes --depwarn=yes --project=./test -e 'using Pkg; Pkg.rm("ReTestItems")'
6470
- name: Run tests
6571
uses: julia-actions/julia-runtest@v1
6672
continue-on-error: ${{ !(matrix.version == '1' && matrix.os == 'ubuntu-latest') && matrix.version == 'nightly' }}
6773
with:
6874
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
69-
# run: |
70-
# julia --color=yes --depwarn=yes --project=./test -e 'include("test/retest.jl"); retest(${{ matrix.suite }})'
7175
- uses: actions/upload-artifact@v3
7276
with:
7377
name: coverage-${{ hashFiles('**/*.cov') }}

0 commit comments

Comments
 (0)