Skip to content

Commit 0034cc9

Browse files
author
Matthias Koeppe
committed
.github/workflows/[doc-]build[-pdf].yml: Do not fail when there are no blockers
1 parent 161a7e7 commit 0034cc9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
uses: actions/checkout@v4
3636
- name: Merge CI fixes from sagemath/sage
3737
run: |
38-
.ci/merge-fixes.sh
38+
mkdir -p upstream
39+
.ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
3940
env:
4041
GH_TOKEN: ${{ github.token }}
4142
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
4243
- name: Store CI fixes in upstream artifact
4344
run: |
44-
mkdir -p upstream
4545
if git format-patch --stdout test_base > ci_fixes.patch; then
4646
cp ci_fixes.patch upstream/
4747
fi

.github/workflows/doc-build-pdf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
uses: actions/checkout@v4
3030
- name: Merge CI fixes from sagemath/sage
3131
run: |
32-
.ci/merge-fixes.sh
32+
mkdir -p upstream
33+
.ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
3334
env:
3435
GH_TOKEN: ${{ github.token }}
3536
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
3637
- name: Store CI fixes in upstream artifact
3738
run: |
38-
mkdir -p upstream
3939
if git format-patch --stdout test_base > ci_fixes.patch; then
4040
cp ci_fixes.patch upstream/
4141
fi

.github/workflows/doc-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
uses: actions/checkout@v4
2525
- name: Merge CI fixes from sagemath/sage
2626
run: |
27-
.ci/merge-fixes.sh
27+
mkdir -p upstream
28+
.ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
2829
env:
2930
GH_TOKEN: ${{ github.token }}
3031
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
3132
- name: Store CI fixes in upstream artifact
3233
run: |
33-
mkdir -p upstream
3434
if git format-patch --stdout test_base > ci_fixes.patch; then
3535
cp ci_fixes.patch upstream/
3636
fi

0 commit comments

Comments
 (0)