finalize GHZall in _all and LSTA with unittests #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
build-debug: | |
# needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get install libboost-filesystem-dev libboost-test-dev libboost-regex-dev | |
- 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/ | |
- run: cp /home/runner/work/AutoQ/AutoQ/AutoQ/libz3.so.4.12 /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/ | |
AutoQ/benchmarks/_all/ | |
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 | |
- 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/ | |
- run: cp /home/runner/work/AutoQ/AutoQ/AutoQ/libz3.so.4.12 /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/ | |
AutoQ/benchmarks/_all/ | |
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 |