File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
uses : actions/checkout@v4
36
36
- name : Merge CI fixes from sagemath/sage
37
37
run : |
38
- .ci/merge-fixes.sh
38
+ mkdir -p upstream
39
+ .ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
39
40
env :
40
41
GH_TOKEN : ${{ github.token }}
41
42
SAGE_CI_FIXES_FROM_REPOSITORIES : ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
42
43
- name : Store CI fixes in upstream artifact
43
44
run : |
44
- mkdir -p upstream
45
45
if git format-patch --stdout test_base > ci_fixes.patch; then
46
46
cp ci_fixes.patch upstream/
47
47
fi
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ jobs:
29
29
uses : actions/checkout@v4
30
30
- name : Merge CI fixes from sagemath/sage
31
31
run : |
32
- .ci/merge-fixes.sh
32
+ mkdir -p upstream
33
+ .ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
33
34
env :
34
35
GH_TOKEN : ${{ github.token }}
35
36
SAGE_CI_FIXES_FROM_REPOSITORIES : ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
36
37
- name : Store CI fixes in upstream artifact
37
38
run : |
38
- mkdir -p upstream
39
39
if git format-patch --stdout test_base > ci_fixes.patch; then
40
40
cp ci_fixes.patch upstream/
41
41
fi
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ jobs:
24
24
uses : actions/checkout@v4
25
25
- name : Merge CI fixes from sagemath/sage
26
26
run : |
27
- .ci/merge-fixes.sh
27
+ mkdir -p upstream
28
+ .ci/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log
28
29
env :
29
30
GH_TOKEN : ${{ github.token }}
30
31
SAGE_CI_FIXES_FROM_REPOSITORIES : ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
31
32
- name : Store CI fixes in upstream artifact
32
33
run : |
33
- mkdir -p upstream
34
34
if git format-patch --stdout test_base > ci_fixes.patch; then
35
35
cp ci_fixes.patch upstream/
36
36
fi
You can’t perform that action at this time.
0 commit comments