Skip to content

Commit 91f9351

Browse files
don't make the htmls anymore
1 parent 003eb5b commit 91f9351

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.buildkite/run_tutorial.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ steps:
3434
# We are sensitive to our overall dependencies changing
3535
- ./*.toml
3636
outputs:
37-
- html/**/*.html
37+
#- html/**/*.html
3838
- markdown/**/figures/*.png
3939
- markdown/**/*.md
4040
- notebook/**/*.ipynb
@@ -76,7 +76,7 @@ steps:
7676
- staticfloat/coppermind:
7777
input_from: "tutorial-{SANITIZED_PATH}"
7878
outputs:
79-
- html/**/*.html
79+
#- html/**/*.html
8080
- markdown/**/figures/*.png
8181
- markdown/**/*.md
8282
- notebook/**/*.ipynb

src/SciMLTutorials.jl

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ using Weave, Pkg, IJulia, InteractiveUtils, Markdown
55
repo_directory = joinpath(@__DIR__,"..")
66
cssfile = joinpath(@__DIR__, "..", "templates", "skeleton_css.css")
77
latexfile = joinpath(@__DIR__, "..", "templates", "julia_tex.tpl")
8-
default_builds = (:script,:html,:github)
8+
default_builds = (:script,:github)
99

1010
function weave_file(folder,file,build_list=default_builds)
1111
target = joinpath(repo_directory, "tutorials", folder, file)
1212
@info("Weaving $(target)")
13-
13+
1414
if isfile(joinpath(repo_directory, "tutorials", folder, "Project.toml"))
1515
@info("Instantiating", folder)
1616
Pkg.activate(joinpath(repo_directory,"tutorials", folder))
1717
Pkg.instantiate()
1818
Pkg.build()
19-
19+
2020
@info("Printing out `Pkg.status()`")
2121
Pkg.status()
2222
end
@@ -134,4 +134,3 @@ function open_notebooks()
134134
end
135135

136136
end
137-

0 commit comments

Comments
 (0)