Skip to content

Commit f908036

Browse files
committed
Bump compat limit to Julia v1.7+
This is necessary because Julia v1.7+ has important fixes in the `Tar` standard library. Require UserNSSandbox_jll that includes overlay mount support
1 parent 2e90dee commit f908036

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ steps:
99
elif [[ "$${ARCH}" == "aarch64" ]]; then
1010
ROOTFS_HASH="dcf39d10ba43bf13c75d5031c3a88f125780033b"
1111
fi
12-
for JULIA_VERSION in 1.6 nightly; do
12+
for JULIA_VERSION in 1.7 nightly; do
1313
for LOCAL_SANDBOX in true false; do
1414
buildkite-agent pipeline upload .buildkite/test_sandbox.yml
1515
done

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
julia-version:
18-
- "1.6"
18+
- "1.7"
1919
- "1"
2020
- "nightly"
2121
julia-arch:
@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/checkout@v2
5656
- uses: julia-actions/setup-julia@v1
5757
with:
58-
version: "^1.6.0-0"
58+
version: "^1.7.0-0"
5959
- name: Cache artifacts
6060
uses: actions/cache@v2
6161
env:

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ UserNSSandbox_jll = "b88861f7-1d72-59dd-91e7-a8cc876a4984"
2020
Preferences = "1.2.5"
2121
Scratch = "1"
2222
Tar_jll = "1.34.0"
23-
UserNSSandbox_jll = "2023.3.27"
24-
julia = "1.6"
23+
UserNSSandbox_jll = "2023.8.8"
24+
julia = "1.7"
2525

2626
[extras]
2727
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"

contrib/debian-julia-python3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is an example of how to create a rootfs image from a Dockerfile
22
# Build this with `julia --project contrib/build_docker_images.jl debian-julia-python3`
3-
ARG JULIA_VERSION=1.6
3+
ARG JULIA_VERSION=1.7
44
FROM julia:${JULIA_VERSION} as julia_container
55

66
# Our base image will be debian

0 commit comments

Comments
 (0)