Skip to content

Commit

Permalink
ci: Add run test to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alamshafil committed Jul 1, 2022
1 parent 909230b commit 3da3104
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ jobs:
./autogen.sh
./configure --prefix=`pwd`/depends/${{ matrix.host }} ${{ matrix.config-opts }} || ( cat config.log && false)
make $MAKEJOBS ${{ matrix.goal }} || ( echo "Build failure. Verbose build follows." && make ${{ matrix.goal }} V=1 ; false )
- name: Run tests
if: ${{ matrix.run-tests }}
run: |
make check $MAKEJOBS VERBOSE=1
test/functional/test_runner.py
- name: Strip built binaries
run: |
Expand Down

0 comments on commit 3da3104

Please sign in to comment.