Skip to content

Commit a9d84a8

Browse files
author
Matthias Koeppe
committed
Use .ci/merge-fixes.sh in all workflows
1 parent 9cff8ff commit a9d84a8

File tree

6 files changed

+45
-0
lines changed

6 files changed

+45
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
id: checkout
3333
uses: actions/checkout@v4
3434

35+
- name: Merge CI fixes from sagemath/sage
36+
run: |
37+
.ci/merge-fixes.sh
38+
env:
39+
GH_TOKEN: ${{ github.token }}
40+
3541
- name: Update system packages
3642
id: prepare
3743
run: |

.github/workflows/ci-conda.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ jobs:
5151
steps:
5252
- uses: actions/checkout@v4
5353

54+
- name: Merge CI fixes from sagemath/sage
55+
run: |
56+
.ci/merge-fixes.sh
57+
env:
58+
GH_TOKEN: ${{ github.token }}
59+
5460
- name: Check for Miniconda
5561
id: check_conda
5662
run: echo ::set-output name=installed::$CONDA

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24+
- name: Merge CI fixes from sagemath/sage
25+
run: |
26+
.ci/merge-fixes.sh
27+
env:
28+
GH_TOKEN: ${{ github.token }}
29+
2430
- name: Prepare
2531
run: |
2632
apt-get update && apt-get install -y zip

.github/workflows/doc-build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v4
2121

22+
- name: Merge CI fixes from sagemath/sage
23+
run: |
24+
.ci/merge-fixes.sh
25+
env:
26+
GH_TOKEN: ${{ github.token }}
27+
2228
- name: Update system packages
2329
run: |
2430
apt-get update && apt-get install -y git zip

.github/workflows/docker.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,12 @@ jobs:
179179
(export PATH=$(pwd)/build/bin:$PATH; (cd upstream && bash -x update-pkgs.sh) && sed -i.bak '/upstream/d' .dockerignore && echo "/:toolchain:/i ADD upstream upstream" | sed -i.bak -f - build/bin/write-dockerfile.sh && git diff)
180180
if: inputs.upstream_artifact
181181

182+
- name: Merge CI fixes from sagemath/sage
183+
run: |
184+
.ci/merge-fixes.sh
185+
env:
186+
GH_TOKEN: ${{ github.token }}
187+
182188
- name: Try to login to ghcr.io
183189
if: inputs.docker_push_repository != ''
184190
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable

.github/workflows/lint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
17+
- name: Merge CI fixes from sagemath/sage
18+
run: |
19+
.ci/merge-fixes.sh
20+
env:
21+
GH_TOKEN: ${{ github.token }}
1722
- name: Set up Python
1823
uses: actions/setup-python@v4
1924
with:
@@ -28,6 +33,11 @@ jobs:
2833
steps:
2934
- name: Checkout
3035
uses: actions/checkout@v4
36+
- name: Merge CI fixes from sagemath/sage
37+
run: |
38+
.ci/merge-fixes.sh
39+
env:
40+
GH_TOKEN: ${{ github.token }}
3141
- name: Set up Python
3242
uses: actions/setup-python@v4
3343
with:
@@ -42,6 +52,11 @@ jobs:
4252
steps:
4353
- name: Checkout
4454
uses: actions/checkout@v4
55+
- name: Merge CI fixes from sagemath/sage
56+
run: |
57+
.ci/merge-fixes.sh
58+
env:
59+
GH_TOKEN: ${{ github.token }}
4560
- name: Set up Python
4661
uses: actions/setup-python@v4
4762
with:

0 commit comments

Comments
 (0)