blob: e50f1228289c7c8c28b1680c15a0435d692c2c3e [file] [log] [blame]
Zhiyi Zhang3e96a0f2020-12-21 21:13:24 -08001name: build_v03
2
3on:
4 push:
5 branches: [ v0.3 ]
6 pull_request:
7 branches: [ v0.3 ]
8
9jobs:
10 build:
11
12 runs-on: ubuntu-latest
13
14 steps:
15 - uses: actions/checkout@v2
Zhiyi Zhang49513662020-12-21 21:21:13 -080016 - 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 Zhang3e96a0f2020-12-21 21:13:24 -080023 - 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