File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed
Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ MatrixAlgebraKitChainRulesCoreExt = "ChainRulesCore"
1616Aqua = " 0.6, 0.7, 0.8"
1717ChainRulesCore = " 1"
1818ChainRulesTestUtils = " 1"
19- CUDA = " 0.12, 0.13 "
19+ CUDA = " 5 "
2020JET = " 0.9"
2121LinearAlgebra = " 1"
2222SafeTestsets = " 0.1"
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ pipeline {
2727 }
2828 steps {
2929 sh '''
30- julia --project=. -e 'using Pkg: Pkg
31- Pkg.instantiate();
32- Pkg.test("MatrixAlgebraKit"; test_args=["cuda"])'
30+ julia --project=. -e 'using Pkg: Pkg; Pkg.test("MatrixAlgebraKit"; test_args=["--group=cuda"])'
3331 '''
3432 }
3533 }
@@ -53,9 +51,7 @@ pipeline {
5351 }
5452 steps {
5553 sh '''
56- julia --project=. -e 'using Pkg: Pkg
57- Pkg.instantiate();
58- Pkg.test("MatrixAlgebraKit"; test_args=["cuda"])'
54+ julia --project=. -e 'using Pkg: Pkg; Pkg.test("MatrixAlgebraKit"; test_args=["--group=cuda"])'
5955 '''
6056 }
6157 }
Original file line number Diff line number Diff line change 11using SafeTestsets
22
3- pat = r" (?:--group=)(\w +)"
4- arg_id = findfirst(pat, ARGS )
3+ const pat = r" (?:--group=)(\w +)"
4+ arg_id = findfirst(contains( pat) , ARGS )
55const GROUP = if isnothing(arg_id)
66 uppercase(get(ENV , " GROUP" , " ALL" ))
77else
You can’t perform that action at this time.
0 commit comments