-
-
Notifications
You must be signed in to change notification settings - Fork 477
41 lines (33 loc) · 1008 Bytes
/
compile.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
name: Compile models
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- uses: actions/checkout@v2
with:
repository: 'stan-dev/performance-tests-cmdstan'
submodules: recursive
- uses: actions/checkout@v2
with:
path: 'example-models-new'
fetch-depth: 0
- name: Write modified models
run: |
cd example-models-new
echo "example-models-new/basic_distributions/binormal.stan" > ../test-models.txt
git diff --name-only origin/master $GITHUB_SHA --diff-filter=AM | grep ".stan$" | sed -e 's/^/example-models-new\//' >> ../test-models.txt
- name: Compile all new or modified models
run: |
cd cmdstan
make build
cd ..
./runPerformanceTests.py --runs=0 --tests-file test-models.txt