-
Notifications
You must be signed in to change notification settings - Fork 4
69 lines (67 loc) · 2.39 KB
/
c-cpp.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
60
61
62
63
64
65
66
67
68
69
name: C/C++ CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
# setup:
# runs-on: ubuntu-latest
# steps:
# - run: sudo apt-get install libboost-filesystem-dev libboost-test-dev libboost-regex-dev z3
build-debug:
# needs: setup
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install libboost-filesystem-dev libboost-test-dev libboost-regex-dev z3
- run: git clone https://github.com/alan23273850/AutoQ.git
- run: cd AutoQ && git checkout ${{ github.ref_name }} && mkdir build && make debug
- run: cp /usr/lib/x86_64-linux-gnu/libboost_unit_test_framework.so.1.74.0 /home/runner/work/AutoQ/AutoQ/AutoQ/build/unit_tests/
- run: cp /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.74.0 /home/runner/work/AutoQ/AutoQ/AutoQ/build/unit_tests/
- uses: actions/upload-artifact@v4
with:
name: AutoQ-debug
path: |
AutoQ/Makefile
AutoQ/build/
AutoQ/unit_tests/
test-debug:
needs: build-debug
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: AutoQ-debug
path: AutoQ/
# - run: pwd
# - run: ls -a
- run: cd AutoQ/build/unit_tests/ && chmod +x ./explicit_tree_aut_test && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./explicit_tree_aut_test
build-release:
# needs: setup
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install libboost-filesystem-dev libboost-test-dev libboost-regex-dev z3
- run: git clone https://github.com/alan23273850/AutoQ.git
- run: cd AutoQ && git checkout ${{ github.ref_name }} && mkdir build && make release
- run: cp /usr/lib/x86_64-linux-gnu/libboost_unit_test_framework.so.1.74.0 /home/runner/work/AutoQ/AutoQ/AutoQ/build/unit_tests/
- run: cp /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.74.0 /home/runner/work/AutoQ/AutoQ/AutoQ/build/unit_tests/
- uses: actions/upload-artifact@v4
with:
name: AutoQ-release
path: |
AutoQ/Makefile
AutoQ/build/
AutoQ/unit_tests/
test-release:
needs: build-release
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: AutoQ-release
path: AutoQ/
# - run: pwd
# - run: ls -a
- run: cd AutoQ/build/unit_tests/ && chmod +x ./explicit_tree_aut_test && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./explicit_tree_aut_test