Skip to content

Commit

Permalink
improve .yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Aug 22, 2024
1 parent 884aba6 commit ca3f716
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/timbl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,19 @@ jobs:
run: cppcheck ${{ env.cpc_opts }} .
- name: make
run: make
continue-on-error: true
- name: install
if: ${{ steps.make.outcome == 'success' }}
run: sudo make install
continue-on-error: true
- name: make check
if: ${{ steps.install.outcome == 'success' }}
env:
CXX: ${{ matrix.compiler }}
run: LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib make check
continue-on-error: true
- name: show log
if: ${{ steps.check.outcome != 'success' }}
run: cat src/test-suite.log
- name: Notify IRC of failure
if: ${{ failure() }}
Expand Down

0 comments on commit ca3f716

Please sign in to comment.