-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmake.jl
218 lines (196 loc) · 7.39 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
using Base64
import Dates
const BUILDROOT = get(ENV, "BUILDROOT", pwd())
const JULIA_SOURCE = get(ENV, "JULIA_SOURCE", "$(BUILDROOT)/julia")
const JULIA_DOCS = get(ENV, "JULIA_DOCS", "$(BUILDROOT)/docs.julialang.org")
const JULIA_DOCS_TMP = get(ENV, "JULIA_DOCS_TMP", "$(BUILDROOT)/tmp")
# download and extract binary for a given version, return path to executable
function download_release(v::VersionNumber)
x, y = v.major, v.minor
julia_exec = cd(BUILDROOT) do
julia = "julia-$(v)-linux-x86_64"
tarball = "$(julia).tar.gz"
sha256 = "julia-$(v).sha256"
url = "https://julialang-s3.julialang.org/bin/linux/x64/$(x).$(y)/$(tarball)"
sha_url = "https://julialang-s3.julialang.org/bin/checksums/$(sha256)"
@info "Downloading release tarball." url sha_url
run(`curl -fvo $(tarball) -L $(url)`)
run(`curl -fvo $(sha256) -L $(sha_url)`)
try
run(pipeline(`grep $(tarball) $(sha256)`, `sha256sum -c`))
catch e
@info "Contents of SHA256 file:\n$(read(sha256, String))"
rethrow(e)
end
mkpath(julia)
run(`tar -xzf $(tarball) -C $(julia) --strip-components 1`)
return abspath(julia, "bin", "julia")
end
return julia_exec
end
# download and extract nightly binary, return path to executable and commit
function download_nightly()
julia_exec, commit = cd(BUILDROOT) do
julia = "julia-latest-linux64"
tarball = "$(julia).tar.gz"
url = "https://julialangnightlies-s3.julialang.org/bin/linux/x64/$(tarball)"
@info "Downloading nightly tarball." url
run(`curl -fvo $(tarball) -L $url`)
# find the commit from the extracted folder
folder = first(readlines(`tar -tf $(tarball)`))
_, commit = split(folder, '-'); commit = chop(commit)
mkpath(julia)
run(`tar -xzf $(tarball) -C $(julia) --strip-components 1`)
return abspath(julia, "bin", "julia"), commit
end
return julia_exec, commit
end
function makedocs(julia_exec)
@sync begin
builder = @async begin
withenv("DOCUMENTER_KEY" => nothing, # skips deploydocs with the BuildBotConfig (see doc/make.jl)
"BUILDROOT" => nothing) do
run(`make -C $(JULIA_SOURCE)/doc pdf texplatform=docker JULIA_EXECUTABLE=$(julia_exec)`)
end
end
@async begin
while !istaskdone(builder)
sleep(60)
@info "[$(Dates.format(Dates.now(), raw"yyyy-mm-dd\THH:MM:SS"))] building pdf ..."
end
end
end
end
function copydocs(file)
isdir(JULIA_DOCS_TMP) || mkpath(JULIA_DOCS_TMP)
output = "$(JULIA_SOURCE)/doc/_build/pdf/en"
destination = "$(JULIA_DOCS_TMP)/$(file)"
for f in readdir(output)
if startswith(f, "TheJuliaLanguage") && endswith(f, ".pdf")
cp("$(output)/$(f)", destination; force=true)
@info "finished, output file copied to $(destination)."
break
end
end
end
function build_release_pdf(v::VersionNumber)
@info "building PDF for Julia v$(v)."
file = "julia-$(v).pdf"
# early return if file exists
if isfile("$(JULIA_DOCS)/$(file)")
@info "PDF for Julia v$(v) already exists, skipping."
return
end
# download julia binary
julia_exec = download_release(v)
# checkout relevant tag and clean repo
run(`git -C $(JULIA_SOURCE) checkout v$(v)`)
run(`git -C $(JULIA_SOURCE) clean -fdx`)
# invoke makedocs
makedocs(julia_exec)
# copy built PDF to JULIA_DOCS_TMP
copydocs(file)
end
function build_nightly_pdf()
julia_exec, commit = download_nightly()
# output is "julia version 1.1.0-DEV"
_, _, v = split(readchomp(`$(julia_exec) --version`))
@info "commit determined to $(commit) and version determined to $(v)."
# checkout correct commit and clean repo
run(`git -C $(JULIA_SOURCE) checkout $(commit)`)
run(`git -C $(JULIA_SOURCE) clean -fdx`)
# invoke makedocs
makedocs(julia_exec)
# copy the built PDF to JULIA_DOCS
copydocs("julia-$(v).pdf")
end
# find all tags in the julia repo
function collect_versions()
str = read(`git -C $(JULIA_SOURCE) ls-remote --tags origin`, String)
versions = VersionNumber[]
for line in eachline(IOBuffer(str))
# lines are in the form 'COMMITSHA\trefs/tags/TAG'
_, ref = split(line, '\t')
_, _, tag = split(ref, '/')
if occursin(r"^v\d+\.\d+\.\d+(?:-(:?rc|beta)\d+)?$", tag)
# the version regex is not as general as Base.VERSION_REGEX -- we only build "pure"
# versions and exclude tags that are pre-releases (except for -rcN and -betaN) or
# have build information.
v = VersionNumber(tag)
# pdf doc only possible for 1.1.0 and above
v >= v"1.1.0" || continue
# only build RCs if > 1.7
v < v"1.7.0" && !isempty(v.prerelease) && continue
# exclude 1.8.0 pre-releases, since those fail
v"1.8.0-" < v < v"1.8.0" && continue
# exclude 1.9.0-beta1, because it doesn't have a SHA file
v == v"1.9.0-beta1" && continue
push!(versions, v)
end
end
return versions
end
# similar to Documenter.deploydocs
function commit()
if get(ENV, "GITHUB_EVENT_NAME", nothing) == "pull_request"
@info "skipping commit from pull requests."
return
end
if !isdir(JULIA_DOCS_TMP)
@info "No new PDFs created, skipping commit."
return
end
@info "committing built PDF files."
# Make sure the repo is up to date
run(`git fetch origin`)
run(`git reset --hard origin/assets`)
# Copy file from JULIA_DOCS_TMP to JULIA_DOCS
for file in readdir(JULIA_DOCS_TMP)
endswith(file, ".pdf") || continue
from = joinpath(JULIA_DOCS_TMP, file)
@debug "Copying a PDF" file from pwd()
cp(from, file; force = true)
end
mktemp() do keyfile, iokey; mktemp() do sshconfig, iossh
# Set up keyfile
write(iokey, base64decode(get(ENV, "DOCUMENTER_KEY_PDF", "")))
close(iokey)
chmod(keyfile, 0o600)
# Set up ssh config file
print(iossh,
"""
Host github.com
StrictHostKeyChecking no
HostName github.com
IdentityFile $keyfile
BatchMode yes
""")
close(iossh)
chmod(sshconfig, 0o600)
# Configure git
run(`git config user.name "docs.julialang.org"`)
run(`git config user.email "documenter@juliadocs.github.io"`)
run(`git remote set-url origin git@github.com:JuliaLang/docs.julialang.org.git`)
run(`git config core.sshCommand "ssh -F $(sshconfig)"`)
# Committing all .pdf files
run(`git add '*.pdf'`)
run(`git commit --amend --date=now -m "PDF versions of Julia's manual."`)
# Push
run(`git push -f origin assets`)
end end
end
function main()
if "releases" in ARGS
@info "building PDFs for all applicable Julia releases."
foreach(build_release_pdf, collect_versions())
elseif "nightly" in ARGS
@info "building PDF for Julia nightly."
build_nightly_pdf()
elseif "commit" in ARGS
@info "deploying to JuliaLang/docs.julialang.org"
cd(() -> commit(), JULIA_DOCS)
end
end
if abspath(PROGRAM_FILE) == @__FILE__
main()
end