FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
math/.github/workflows/header_checks.yml at develop · jachymb/math · GitHub
jachymb
/
math
Public
forked from
stan-dev/math
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
math
/
.github
/
workflows
/
header_checks.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
71 lines (58 loc) · 1.52 KB
Breadcrumbs
math
/
.github
/
workflows
/
header_checks.yml
Copy path
File metadata and controls
71 lines (58 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name
:
Header checks
on
:
pull_request
:
branches
:
[ develop, master ]
push
:
branches
:
[ develop, master ]
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
:
windows
:
name
:
Windows
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v6
-
uses
:
actions/setup-python@v6
with
:
python-version
:
'
3.x
'
-
name
:
Print g++/mingw32-make version and path
run
:
|
g++ --version
Get-Command g++ | Select-Object -ExpandProperty Definition
mingw32-make --version
Get-Command mingw32-make | Select-Object -ExpandProperty Definition
shell
:
powershell
-
name
:
Build Math libs
shell
:
powershell
run
:
mingw32-make -f make/standalone math-libs -j2
-
name
:
Run header tests
shell
:
powershell
run
:
make -j2 test-headers
opencl
:
name
:
OpenCL
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Run header tests
run
:
|
echo "STAN_OPENCL=true" > make/local
make -j2 test-headers
no_range_checks
:
name
:
NoRange
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Run header tests
run
:
|
echo "STAN_NO_RANGE_CHECKS=true" > make/local
./runTests.py -j2 ./test/unit/math/prim/err/
Back
|
FazBrowse Home
|
New Git URL