Skip to content

Commit 21b8a8c

Browse files
Add dedicated CI
1 parent 5184f28 commit 21b8a8c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ jobs:
7373
os: 'ubuntu-latest'
7474
arch: 'x64'
7575
group: 'AutoDiff_Ext'
76+
- version: '1'
77+
node:
78+
os: 'ubuntu-latest'
79+
arch: 'x64'
80+
group: 'Arbitrary-Precision'
7681

7782
steps:
7883
- uses: actions/checkout@v5

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using TestItemRunner
33
using Pkg
44

55
const GROUP_LIST =
6-
String["All", "Core", "Code-Quality", "AutoDiff_Ext", "Makie_Ext", "CUDA_Ext", "Arbitrary_Precision_Ext"]
6+
String["All", "Core", "Code-Quality", "AutoDiff_Ext", "Makie_Ext", "CUDA_Ext", "Arbitrary-Precision"]
77

88
const GROUP = get(ENV, "GROUP", "All")
99
(GROUP in GROUP_LIST) || throw(ArgumentError("Unknown GROUP = $GROUP\nThe allowed groups are: $GROUP_LIST\n"))
@@ -83,7 +83,7 @@ if (GROUP == "CUDA_Ext")
8383
include(joinpath(testdir, "ext-test", "gpu", "cuda_ext.jl"))
8484
end
8585

86-
if (GROUP == "Arbitrary_Precision_Ext")
86+
if (GROUP == "Arbitrary-Precision")
8787
Pkg.activate("ext-test/cpu/arbitrary_precision")
8888
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
8989
Pkg.update()

0 commit comments

Comments
 (0)