Skip to content

Commit

Permalink
small workflow improvements #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Jan 10, 2024
1 parent be9f390 commit ff1c1c2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
sudo pip3 install texttest
- name: Validate CITATION.cff
if: matrix.build_type == 'full' && github.repository == 'DLR-TS/sumo'
if: matrix.build_type == 'full' && github.repository == 'DLR-TS/sumo' && github.event_name == 'schedule' && matrix.compiler == 'gcc'
uses: dieghernan/cff-validator@v2.3
with:
citation-path: sumo/CITATION.cff
Expand Down Expand Up @@ -130,14 +130,13 @@ jobs:
- name: Compressing test results
if: failure()
run: |
zip -r texttesttmp.zip ~/.texttest/tmp
run: zip -r texttesttmp.zip ~/.texttest/tmp

- name: Uploading test results
if: failure()
uses: actions/upload-artifact@v3
with:
name: texttesttmp
name: texttesttmp-${{ matrix.compiler }}-${{ matrix.build_type }}
path: texttesttmp.zip
if-no-files-found: warn

Expand Down

0 comments on commit ff1c1c2

Please sign in to comment.