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 | ||||
16 | - name: configure | ||||
17 | run: ./waf configure --with-tests | ||||
18 | - name: build | ||||
19 | run: ./waf | ||||
20 | - name: install | ||||
21 | run: ./waf install | ||||
22 | - name: check | ||||
23 | run: ./build/unit-tests |