Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .ci/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

[[deps.BinaryBuilder]]
deps = ["ArgParse", "BinaryBuilderBase", "Binutils_jll", "Dates", "Downloads", "GitHub", "HTTP", "JLD2", "JSON", "LibGit2", "Libdl", "Logging", "LoggingExtras", "ObjectFile", "OutputCollectors", "Patchelf_jll", "Pkg", "PkgLicenses", "REPL", "Random", "Registrator", "RegistryTools", "SHA", "Scratch", "Sockets", "TOML", "UUIDs", "ghr_jll"]
git-tree-sha1 = "32a89265ffd77083daf729618d4279242ee44020"
repo-rev = "master"
repo-url = "https://github.com/JuliaPackaging/BinaryBuilder.jl"
git-tree-sha1 = "d1693d5ed7c9c222bd1f51e65dd72ab8daff3563"
repo-rev = "ct/ocaml-support"
repo-url = "https://github.com/JuliaPackaging/BinaryBuilder.jl.git"
uuid = "12aac903-9f7c-5d81-afc2-d9565ea332ae"
version = "0.6.4"

[[deps.BinaryBuilderBase]]
deps = ["Bzip2_jll", "CodecZlib", "Downloads", "Gzip_jll", "HistoricalStdlibVersions", "InteractiveUtils", "JLLWrappers", "JSON", "LibGit2", "LibGit2_jll", "Libdl", "Logging", "OrderedCollections", "OutputCollectors", "Pkg", "Printf", "ProgressMeter", "REPL", "Random", "SHA", "Scratch", "SimpleBufferStream", "TOML", "Tar", "Tar_jll", "UUIDs", "XZ_jll", "Zstd_jll", "p7zip_jll", "pigz_jll", "unzip_jll"]
git-tree-sha1 = "85259632e317f61245d8240d3ee9b08112f52903"
repo-rev = "master"
git-tree-sha1 = "93bba7995cddf5e19e5398a899ff61774cf163ac"
repo-rev = "ct/ocaml-runner"
repo-url = "https://github.com/JuliaPackaging/BinaryBuilderBase.jl.git"
uuid = "7f725544-6523-48cd-82d1-3fa08ff4056e"
version = "1.37.0"
Expand Down
30 changes: 30 additions & 0 deletions 0_RootFS/[email protected]/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
### Instructions for adding a new version of the OCaml toolchain
#
# * update the `version` variable and `sources`
# * To deploy the shard and automatically update your BinaryBuilderBase's
# `Artifacts.toml`, use the `--deploy` flag to the `build_tarballs.jl` script.
# You can build & deploy by running:
#
# julia build_tarballs.jl --debug --verbose --deploy TARGET
#

using BinaryBuilderBase, BinaryBuilder, Pkg.Artifacts

include("../common.jl")

name = "OCamlBase"
version = v"5.3.0"

sources = [
GitSource("https://github.com/ocaml/ocaml",
"1ccb919e35f8378834060c503ae953897fe0fb7f"), # 5.3.0
GitSource("https://github.com/ocaml/dune",
"76c0c3941798f81dcc13a305d7abb120c191f5fa"), # 3.19.1
GitSource("https://github.com/ocaml/ocamlbuild",
"131ba63a1b96d00f3986c8187677c8af61d20a08"), # 0.16.1
GitSource("https://github.com/ocaml/ocamlfind",
"bd9aad183f0d1c2caf3ec29e4f52bc69361f266d"), # 1.9.8
DirectorySource("./bundled"),
]

include("../ocaml_common.jl")
Loading