-
-
Notifications
You must be signed in to change notification settings - Fork 188
51 lines (44 loc) · 1.19 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Windows Rtools44
on:
pull_request:
branches: [ develop, master ]
push:
branches: [ develop, arm-ci ]
paths-ignore:
- 'doygen/**'
- 'hooks/**'
- 'licenses/**'
- 'LICENSE.md'
- 'README.md'
- 'RELEASE-NOTES.txt'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
mix-fun-1:
name: mix/fun tests 1
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Suppress warnings
run: echo "CPPFLAGS += -w" >> make/local
- name: Build Math libs
run: |
make -f make/standalone math-libs -j2
- name: Run mix/fun unit tests
run: |
python runTests.py -j4 --jumbo test/unit/math/fwd
python runTests.py -j4 --jumbo test/unit/math/prim
python runTests.py -j4 --jumbo test/unit/math/rev
python runTests.py -j2 test/unit/math/mix
- name: Upload gtest_output xml
uses: actions/upload-artifact@v4
if: failure()
with:
name: gtest_outputs_xml
path: '**/*_test.xml'