Skip to content

Commit

Permalink
change always to \!cancelled (github docs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Clea F. Rees committed Jan 15, 2025
1 parent 4976808 commit db7579e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/nfssext-autochecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
package_file: .github/tl_packages

clm:
if: ${{ always() }}
if: ${{ !cancelled() }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
name: "Test build: cfr-lm"
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: l3build fnttarg
- name: Archive failed build output
# run even if previous step failed
if: ${{ always() }}
if: ${{ !cancelled() }}
# dwyn o https://github.com/latex3/latex2e/blob/develop/.github/workflows/main.yaml
uses: actions/upload-artifact@v4
with:
Expand All @@ -92,7 +92,7 @@ jobs:
run: updmap --user --enable Map=clm.map
- name: Archive failed test output for clm
# run even if previous step failed
if: ${{ always() }}
if: ${{ !cancelled() }}
uses: zauguin/l3build-failure-artifacts@v1
with:
name: testfiles-clm
Expand All @@ -119,7 +119,7 @@ jobs:
# addaswyd o https://github.com/latex3/latex2e/blob/develop/.github/workflows/main.yaml
# these do not depend on clm
nfssext:
if: ${{ always() }}
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
needs: texlive-cache
# don't abandon other builds if one module fails
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
run: "l3build fnttarg"
- name: Archive failed build output
# run even if previous step failed
if: ${{ always() }}
if: ${{ !cancelled() }}
# dwyn o https://github.com/latex3/latex2e/blob/develop/.github/workflows/main.yaml
uses: actions/upload-artifact@v4
with:
Expand All @@ -190,7 +190,7 @@ jobs:
run: "l3build ctan"
- name: Archive failed test output
# run even if previous step failed
if: ${{ always() }}
if: ${{ !cancelled() }}
uses: zauguin/l3build-failure-artifacts@v1
with:
name: testfiles-${{ matrix.module }}
Expand All @@ -210,7 +210,7 @@ jobs:
# we don't really need the variable doing it in a separate matrix ...
# but leave for now as may be useful
nfssext-needy:
if: ${{ always() }}
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
needs: [ texlive-cache, clm ]
# don't abandon other builds if one module fails
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
run: "l3build ctan"
- name: Archive failed test output
# run even if previous step failed
if: ${{ always() }}
if: ${{ !cancelled() }}
uses: zauguin/l3build-failure-artifacts@v1
with:
name: testfiles-${{ matrix.module }}
Expand Down

0 comments on commit db7579e

Please sign in to comment.