Skip to content

Commit d5410a9

Browse files
committed
Start with the old versions.json, instead of starting from scratch
1 parent bb125a9 commit d5410a9

6 files changed

Lines changed: 435 additions & 99 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
41+
with:
42+
persist-credentials: false
4143

4244
- uses: julia-actions/setup-julia@4c0cb0fce8556fdb04a90347310e5db8b1f98fb9 # v2.7.0
4345
with:
@@ -63,6 +65,8 @@ jobs:
6365

6466
steps:
6567
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
68+
with:
69+
persist-credentials: false
6670

6771
- uses: julia-actions/setup-julia@4c0cb0fce8556fdb04a90347310e5db8b1f98fb9 # v2.7.0
6872
with:
@@ -77,6 +81,8 @@ jobs:
7781

7882
- name: Build versions.json
7983
run: make versions.json
84+
env:
85+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8086

8187
- name: Validate versions.json against schema
8288
run: npx -p ajv-cli@3.3.0 ajv -s schema.json -d versions.json

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
internal.json
12
versions.json

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,9 @@ JULIA ?= julia +1.10
88
.PHONY: versions.json
99
versions.json:
1010
JULIA_LOAD_PATH='@:@stdlib' $(JULIA) --startup-file=no --project -e 'import Pkg; Pkg.instantiate(); Pkg.precompile()'
11-
JULIA_LOAD_PATH='@' $(JULIA) --startup-file=no --project -e 'import VersionsJSONUtil; VersionsJSONUtil.main("versions.json")'
11+
JULIA_LOAD_PATH='@' $(JULIA) --startup-file=no --project -e 'import VersionsJSONUtil; VersionsJSONUtil.main(".")'
12+
13+
.PHONY: cleanall
14+
cleanall:
15+
$(RM) -v internal.json
16+
$(RM) -v versions.json

Manifest.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.10.11"
44
manifest_format = "2.0"
5-
project_hash = "07e9b6a7d8a36a40c4dcc573f5708653b22bba20"
5+
project_hash = "541a1e822f6feb6d841f99682e7d723700c0e5e2"
66

77
[[deps.AbstractFFTs]]
88
deps = ["LinearAlgebra"]
@@ -402,6 +402,12 @@ git-tree-sha1 = "38044a04637976140074d0b0621c1edf0eb531fd"
402402
uuid = "61579ee1-b43e-5ca0-a5da-69d92c66a64b"
403403
version = "9.55.1+0"
404404

405+
[[deps.GitHub]]
406+
deps = ["Base64", "Dates", "HTTP", "JSON", "MbedTLS", "Sockets", "SodiumSeal", "URIs"]
407+
git-tree-sha1 = "ef535d4e8cb96c4fb6753212744ee737fad1bc50"
408+
uuid = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
409+
version = "5.12.0"
410+
405411
[[deps.Glib_jll]]
406412
deps = ["Artifacts", "GettextRuntime_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE2_jll", "Zlib_jll"]
407413
git-tree-sha1 = "24f6def62397474a297bfcec22384101609142ed"
@@ -1080,6 +1086,12 @@ version = "1.2.0"
10801086
[[deps.Sockets]]
10811087
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
10821088

1089+
[[deps.SodiumSeal]]
1090+
deps = ["Base64", "Libdl", "libsodium_jll"]
1091+
git-tree-sha1 = "80cef67d2953e33935b41c6ab0a178b9987b1c99"
1092+
uuid = "2133526b-2bfb-4018-ac12-889fb3908a75"
1093+
version = "0.1.1"
1094+
10831095
[[deps.SortingAlgorithms]]
10841096
deps = ["DataStructures"]
10851097
git-tree-sha1 = "64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9"
@@ -1542,6 +1554,12 @@ git-tree-sha1 = "e51150d5ab85cee6fc36726850f0e627ad2e4aba"
15421554
uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f"
15431555
version = "1.6.58+0"
15441556

1557+
[[deps.libsodium_jll]]
1558+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
1559+
git-tree-sha1 = "011b0a7331b41c25524b64dc42afc9683ee89026"
1560+
uuid = "a9144af2-ca23-56d9-984f-0d03f7b5ccf8"
1561+
version = "1.0.21+0"
1562+
15451563
[[deps.libva_jll]]
15461564
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll", "Xorg_libXext_jll", "Xorg_libXfixes_jll", "libdrm_jll"]
15471565
git-tree-sha1 = "7dbf96baae3310fe2fa0df0ccbb3c6288d5816c9"

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ version = "0.1.0-DEV"
55

66
[deps]
77
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
8+
GitHub = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
89
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
910
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1011
Lazy = "50d2b5c4-7a5e-59d5-8109-a42b560f39c0"

0 commit comments

Comments
 (0)