Skip to content

Commit 0e0482a

Browse files
committed
Testing
1 parent b2ee6a7 commit 0e0482a

1 file changed

Lines changed: 19 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,17 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
os: [windows-11-arm, windows-latest, ubuntu-24.04-arm]
29+
os: [
30+
windows-11-arm,
31+
windows-latest,
32+
#ubuntu-24.04-arm
33+
]
3034
config: [
3135
{ label: misc, tests: 'test/unit/*_test.cpp test/unit/math/*_test.cpp test/unit/math/memory' },
32-
{ label: prim, tests: 'test/unit/math/prim' },
33-
{ label: rev, tests: 'test/unit/math/rev' },
34-
{ label: fwd, tests: 'test/unit/math/fwd' },
35-
{ label: 'non-fun mix', tests: 'test/unit/math/mix/core test/unit/math/mix/meta test/unit/math/mix/*_test.cpp' }
36+
#{ label: prim, tests: 'test/unit/math/prim' },
37+
#{ label: rev, tests: 'test/unit/math/rev' },
38+
#{ label: fwd, tests: 'test/unit/math/fwd' },
39+
#{ label: 'non-fun mix', tests: 'test/unit/math/mix/core test/unit/math/mix/meta test/unit/math/mix/*_test.cpp' }
3640
]
3741

3842
steps:
@@ -56,7 +60,8 @@ jobs:
5660
- name: Install Rtools45
5761
if: runner.os == 'Windows'
5862
run: |
59-
Start-Process -FilePath "$env:RTOOLS.exe" -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES" -NoNewWindow -Wait
63+
$InstallDir="C:/$env:RTOOLS"
64+
Start-Process -FilePath "$env:RTOOLS.exe" -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES /DIR=$InstallDir" -NoNewWindow -Wait
6065
echo "C:/$env:RTOOLS/usr/bin;C:/$env:RTOOLS/$env:ARCH-w64-mingw32.static.posix/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
6166
echo "$(pwd)/lib/tbb" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
6267
@@ -85,8 +90,14 @@ jobs:
8590
strategy:
8691
fail-fast: false
8792
matrix:
88-
os: [windows-11-arm, windows-latest, ubuntu-24.04-arm]
89-
group: [1, 2, 3, 4, 5]
93+
os: [
94+
#windows-11-arm,
95+
#windows-latest,
96+
#ubuntu-24.04-arm
97+
]
98+
group: [
99+
#1, 2, 3, 4, 5
100+
]
90101

91102
steps:
92103
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)