Merge branch 'action' of github.com:fmlab-iis/AutoQ into action #270
Workflow file for this run
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: | |
ubuntu-build-debug: | |
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@v3 | |
with: | |
name: AutoQ-debug | |
path: | | |
AutoQ/Makefile | |
AutoQ/build/ | |
AutoQ/unit_tests/ | |
AutoQ/benchmarks/_all/ | |
ubuntu-test-debug: | |
needs: ubuntu-build-debug | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
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 | |
ubuntu-build-release: | |
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@v3 | |
with: | |
name: AutoQ-release | |
path: | | |
AutoQ/Makefile | |
AutoQ/build/ | |
AutoQ/unit_tests/ | |
AutoQ/benchmarks/_all/ | |
ubuntu-test-release: | |
needs: ubuntu-build-release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
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 | |
macos-build-release: | |
runs-on: macos-latest | |
steps: | |
- run: brew install gcc make cmake boost | |
- 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@v3 | |
with: | |
name: AutoQ-release | |
path: | | |
AutoQ/Makefile | |
AutoQ/build/ | |
AutoQ/unit_tests/ | |
AutoQ/benchmarks/_all/ | |
macos-test-release: | |
needs: macos-build-release | |
runs-on: macos-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
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 |