Skip to content

Commit 6cbb173

Browse files
committed
update ci, clean build/
1 parent b70c2db commit 6cbb173

13 files changed

+17
-460
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "build/mx-theme"]
22
path = build/mx-theme
33
url = https://github.com/mli/mx-theme
4+
[submodule "build/utils"]
5+
path = build/utils
6+
url = https://github.com/d2l-ai/utils

Jenkinsfile

+10-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ stage("Build and Publish") {
22
node {
33
ws('workspace/d2l-zh') {
44
checkout scm
5-
sh "build/build_all.sh"
6-
sh """#!/bin/bash
7-
set -e
8-
if [[ ${env.BRANCH_NAME} == master ]]; then
9-
build/upload.sh
10-
fi
11-
"""
12-
}
5+
sh "git submodule update --init"
6+
sh "build/utils/clean_build.sh"
7+
sh "conda env update -f build/env.yml"
8+
sh "build/utils/build_html.sh zh"
9+
sh "build/utils/build_pdf.sh zh"
10+
sh "build/utils/build_pkg.sh zh"
11+
if (env.BRANCH_NAME == 'master') {
12+
sh "build/utils/publish_website.sh zh"
13+
}
14+
}
1315
}
1416
}
15-

Makefile

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
all: html
22

3-
build/%.ipynb: %.md build/env.yml build/md2ipynb.py $(wildcard gluonbook/*)
3+
build/%.ipynb: %.md build/env.yml $(wildcard gluonbook/*)
44
@mkdir -p $(@D)
5-
cd $(@D); python ../md2ipynb.py ../../$< ../../$@
5+
cd $(@D); python ../utils/md2ipynb.py ../../$< ../../$@
66

77
build/%.md: %.md
88
@mkdir -p $(@D)
@@ -62,10 +62,9 @@ pdf: $(DEPS) $(OBJ) $(PDFIMG)
6262
sed -i /\\\\sphinxtablecontinued{Continued\ on\ next\ page}/d $(TEX)
6363
sed -i /{\\\\tablename\\\\\ \\\\thetable{}\ --\ continued\ from\ previous\ page}/d $(TEX)
6464
cd build/_build/latex && \
65-
bash ../../convert_output_svg.sh && \
65+
bash ../../utils/convert_output_svg.sh && \
6666
buf_size=10000000 xelatex d2l-zh.tex && \
6767
buf_size=10000000 xelatex d2l-zh.tex
6868

6969
clean:
7070
rm -rf build/chapter* build/_build build/img build/data build/environment.yml build/README.md $(PKG)
71-

build/build_all.sh

-70
This file was deleted.

build/convert_output_svg.sh

-5
This file was deleted.

build/ipynb2mdd.sh

-77
This file was deleted.

build/lint.sh

-29
This file was deleted.

build/md2ipynb.py

-78
This file was deleted.

build/mdd_utils.py

-41
This file was deleted.

0 commit comments

Comments
 (0)