Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
alan23273850 committed Aug 22, 2024
1 parent a4aa383 commit c61c846
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@ jobs:
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
- uses: actions/checkout@v4
with:
sparse-checkout: |
unit_tests
- run: cd build/unit_tests/ && chmod +x ./explicit_tree_aut_test && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./explicit_tree_aut_test
build-release:
# needs: setup
Expand All @@ -52,12 +55,15 @@ jobs:
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
- uses: actions/checkout@v4
with:
sparse-checkout: |
unit_tests
- run: cd build/unit_tests/ && chmod +x ./explicit_tree_aut_test && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./explicit_tree_aut_test

0 comments on commit c61c846

Please sign in to comment.