File tree 7 files changed +162
-136
lines changed
7 files changed +162
-136
lines changed Original file line number Diff line number Diff line change 19
19
Pkg.rm("ReTestItems") # not compatible with 1.6
20
20
end'
21
21
env :
22
- GROUP : " CUDA" # TODO there are zero tests under this group
22
+ GROUP : " All"
23
+ TEST_FAST : true
24
+ TEST_WORKERS : 4
23
25
if : build.message !~ /\[skip tests\]/
24
26
timeout_in_minutes : 180
25
27
matrix :
Original file line number Diff line number Diff line change @@ -26,11 +26,13 @@ jobs:
26
26
runs-on : ${{ matrix.os }}
27
27
env :
28
28
GROUP : ${{ matrix.suite }}
29
+ TEST_FAST : ${{ matrix.version != '1' || matrix.os != 'ubuntu-latest' }}
29
30
strategy :
30
31
fail-fast : false
31
32
matrix :
32
33
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'
34
36
- ' nightly'
35
37
os :
36
38
- ubuntu-latest
@@ -61,13 +63,15 @@ jobs:
61
63
- uses : julia-actions/cache@v1
62
64
- uses : julia-actions/julia-buildpkg@v1
63
65
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")'
64
70
- name : Run tests
65
71
uses : julia-actions/julia-runtest@v1
66
72
continue-on-error : ${{ !(matrix.version == '1' && matrix.os == 'ubuntu-latest') && matrix.version == 'nightly' }}
67
73
with :
68
74
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 }})'
71
75
- uses : actions/upload-artifact@v3
72
76
with :
73
77
name : coverage-${{ hashFiles('**/*.cov') }}
You can’t perform that action at this time.
0 commit comments