Zhiyi Zhang | 3e96a0f | 2020-12-21 21:13:24 -0800 | [diff] [blame] | 1 | name: build_v03 |
2 | |||||
3 | on: | ||||
4 | push: | ||||
5 | branches: [ v0.3 ] | ||||
6 | pull_request: | ||||
7 | branches: [ v0.3 ] | ||||
8 | |||||
9 | jobs: | ||||
10 | build: | ||||
11 | |||||
12 | runs-on: ubuntu-latest | ||||
13 | |||||
14 | steps: | ||||
15 | - uses: actions/checkout@v2 | ||||
Zhiyi Zhang | 4951366 | 2020-12-21 21:21:13 -0800 | [diff] [blame^] | 16 | - name: prepare ndncxx |
17 | run: | | ||||
18 | git clone https://github.com/named-data/ndn-cxx.git | ||||
19 | cd ndn-cxx | ||||
20 | ./waf configure | ||||
21 | ./waf | ||||
22 | ./waf install | ||||
Zhiyi Zhang | 3e96a0f | 2020-12-21 21:13:24 -0800 | [diff] [blame] | 23 | - name: configure |
24 | run: ./waf configure --with-tests | ||||
25 | - name: build | ||||
26 | run: ./waf | ||||
27 | - name: install | ||||
28 | run: ./waf install | ||||
29 | - name: check | ||||
30 | run: ./build/unit-tests |