-
Notifications
You must be signed in to change notification settings - Fork 19
59 lines (55 loc) · 1.33 KB
/
macos-64bit.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
52
53
54
55
56
57
58
59
name: macos-64bit
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@main
- name: clean
run: make clean
- name: dist
run: |
make
- name: debug
run: |
make DEBUG=yes
- name: shared
run: |
make shared
- name: zip
run: |
make zip
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: admb_macos_zip
path: build/admb.zip
- name: dmg
run: |
make --directory=scripts/installers/packagemaker clean all
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: admb_dmg_distribution
path: build/admb-macos.dmg
- name: gtests
run: |
make --directory=tests/gtests
- name: tests
run: |
make --directory=tests examples
make --directory=tests outputs.txt
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: outputs
path: outputs.txt
- name: kalmanfilter
run: |
make --directory=tests/geolocation
pushd tests/geolocation/kalmanfilter && tar cvzf trackit.tar.gz trackit && popd
- name: Artifact
uses: actions/upload-artifact@v1
with:
name: trackit.tar.gz
path: tests/geolocation/kalmanfilter/trackit.tar.gz