File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -110,27 +110,28 @@ jobs:
110
110
./bootstrap && make build
111
111
working-directory : ./worktree-image
112
112
env :
113
- MAKE : make -j2
113
+ MAKE : make -j2 --output-sync=recurse
114
114
SAGE_NUM_THREADS : 2
115
115
116
116
- name : Build (fallback to non-incremental)
117
117
id : build
118
118
if : always() && steps.worktree.outcome == 'success' && steps.incremental.outcome != 'success'
119
119
run : |
120
120
set -ex
121
- make doc-clean doc-uninstall sagelib-clean && git clean -fx src/sage && ./config.status && make build
121
+ make sagelib-clean && git clean -fx src/sage && ./config.status && make build
122
122
working-directory : ./worktree-image
123
123
env :
124
- MAKE : make -j2
124
+ MAKE : make -j2 --output-sync=recurse
125
125
SAGE_NUM_THREADS : 2
126
126
127
127
- name : Build docs (PDF)
128
128
id : docbuild
129
129
if : always() && (steps.incremental.outcome == 'success' || steps.build.outcome == 'success')
130
- run : make build V=0 && make doc-pdf
130
+ run : |
131
+ make doc-clean doc-uninstall; make doc-pdf
131
132
working-directory : ./worktree-image
132
133
env :
133
- MAKE : make -j2
134
+ MAKE : make -j2 --output-sync=recurse
134
135
SAGE_NUM_THREADS : 2
135
136
136
137
- name : Copy docs
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109
109
if : always() && steps.worktree.outcome == 'success' && steps.incremental.outcome != 'success'
110
110
run : |
111
111
set -ex
112
- make doc-clean doc-uninstall sagelib-clean && git clean -fx src/sage && ./config.status && make build
112
+ make sagelib-clean && git clean -fx src/sage && ./config.status && make build
113
113
working-directory : ./worktree-image
114
114
env :
115
115
MAKE : make -j2 --output-sync=recurse
@@ -124,7 +124,7 @@ jobs:
124
124
set -ex
125
125
export SAGE_USE_CDNS=yes
126
126
mv /sage/local/share/doc/sage/html/en/.git /sage/.git-doc
127
- make doc-clean doc-uninstall sagelib-clean && git clean -fx src/sage
127
+ make doc-clean doc-uninstall
128
128
mkdir -p /sage/local/share/doc/sage/html/en/ && mv /sage/.git-doc /sage/local/share/doc/sage/html/en/.git
129
129
./config.status && make doc-html
130
130
working-directory : ./worktree-image
You can’t perform that action at this time.
0 commit comments