Skip to content

Commit b00e1ba

Browse files
authored
add -n -W --keep-going (#153)
1 parent 380b82e commit b00e1ba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ jobs:
4343
- name: Build Download Notebooks (sphinx-tojupyter)
4444
shell: bash -l {0}
4545
run: |
46-
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter
46+
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
4747
mkdir -p _build/html/_notebooks
4848
cp -u _build/jupyter/*.ipynb _build/html/_notebooks
4949
- name: Build PDF from LaTeX
5050
shell: bash -l {0}
5151
run: |
52-
jb build lectures --builder pdflatex --path-output ./ -n --keep-going
52+
jb build lectures --builder pdflatex --path-output ./ -n -W --keep-going
5353
mkdir _build/html/_pdf
5454
cp -u _build/latex/*.pdf _build/html/_pdf
5555
# Final Build of HTML
5656
- name: Build HTML
5757
shell: bash -l {0}
5858
run: |
59-
jb build lectures --path-output ./
59+
jb build lectures --path-output ./ -n -W --keep-going
6060
- name: Preview Deploy to Netlify
6161
uses: nwtgck/[email protected]
6262
with:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Build Download Notebooks (sphinx-tojupyter)
4848
shell: bash -l {0}
4949
run: |
50-
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter
50+
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
5151
zip -r download-notebooks.zip _build/jupyter
5252
- uses: actions/upload-artifact@v2
5353
with:
@@ -61,7 +61,7 @@ jobs:
6161
- name: Build PDF from LaTeX
6262
shell: bash -l {0}
6363
run: |
64-
jb build lectures --builder pdflatex --path-output ./ -n --keep-going
64+
jb build lectures --builder pdflatex --path-output ./ -n -W --keep-going
6565
- name: Copy LaTeX PDF for GH-PAGES
6666
shell: bash -l {0}
6767
run: |
@@ -71,7 +71,7 @@ jobs:
7171
- name: Build HTML
7272
shell: bash -l {0}
7373
run: |
74-
jb build lectures --path-output ./
74+
jb build lectures --path-output ./ -n -W --keep-going
7575
- name: Deploy website to gh-pages
7676
uses: peaceiris/actions-gh-pages@v3
7777
with:

0 commit comments

Comments
 (0)