Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update repo org. #123

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all 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
Update repo org.
maleadt committed Oct 28, 2024
commit c3cf99ff43e9e2cf0a4b11a56ad72fb499d4dd41
4 changes: 2 additions & 2 deletions Artifacts.toml
Original file line number Diff line number Diff line change
@@ -44,15 +44,15 @@ lazy = true

[[multiarch-rootfs.download]]
sha256 = "d88de5783becfc22cfd13dfa5ad965197f9bae2256e8ad89ff358adb2994b4c1"
url = "https://github.com/staticfloat/Sandbox.jl/releases/download/multiarch-78df527c/multiarch.tar.gz"
url = "https://github.com/JuliaContainerization/Sandbox.jl/releases/download/multiarch-78df527c/multiarch.tar.gz"

[multiarch-testing]
git-tree-sha1 = "d0e5365dc9e5083e1624a2733d0a8834dc9f14af"
lazy = true

[[multiarch-testing.download]]
sha256 = "0a3603e2e76f9614c6b9c6e5ba67a64a2442660718b5bbe1e07da08bee631f83"
url = "https://github.com/staticfloat/Sandbox.jl/releases/download/multiarch-testing-dc9f14af/multiarch-testing.tar.gz"
url = "https://github.com/JuliaContainerization/Sandbox.jl/releases/download/multiarch-testing-dc9f14af/multiarch-testing.tar.gz"

[[qemu-aarch64]]
arch = "x86_64"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -9,10 +9,10 @@
[docs-stable-url]: https://staticfloat.github.io/Sandbox.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: https://staticfloat.github.io/Sandbox.jl/dev
[ci-img]: https://github.com/staticfloat/Sandbox.jl/workflows/CI/badge.svg
[ci-url]: https://github.com/staticfloat/Sandbox.jl/actions/workflows/ci.yml
[codecov-img]: https://codecov.io/gh/staticfloat/Sandbox.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/staticfloat/Sandbox.jl
[ci-img]: https://github.com/JuliaContainerization/Sandbox.jl/workflows/CI/badge.svg
[ci-url]: https://github.com/JuliaContainerization/Sandbox.jl/actions/workflows/ci.yml
[codecov-img]: https://codecov.io/gh/JuliaContainerization/Sandbox.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/JuliaContainerization/Sandbox.jl

> The cultured host's toolkit for ill-mannered Linux guests.

6 changes: 3 additions & 3 deletions contrib/build_docker_image.jl
Original file line number Diff line number Diff line change
@@ -25,13 +25,13 @@ archive_artifact(artifact_hash, tarball_path)
@info("Hashing tarball")
tarball_hash = open(io -> bytes2hex(sha256(io)), tarball_path)

# Upload to `staticfloat/Sandbox.jl`, create a tag based on this docker image
# Upload to `JuliaContainerization/Sandbox.jl`, create a tag based on this docker image
tag_name = "$(image_name)-$(bytes2hex(artifact_hash.bytes[end-3:end]))"
@info("Uploading to staticfloat/Sandbox.jl@$(tag_name)")
@info("Uploading to JuliaContainerization/Sandbox.jl@$(tag_name)")
run(`$(ghr_jll.ghr()) -replace $(tag_name) $(tarball_path)`)

# Bind it into `Artifacts.toml`
tarball_url = "https://github.com/staticfloat/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"
tarball_url = "https://github.com/JuliaContainerization/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"
bind_artifact!(
joinpath(dirname(@__DIR__), "Artifacts.toml"),
"$(image_name)-rootfs",
6 changes: 3 additions & 3 deletions contrib/build_multiarch_testing.jl
Original file line number Diff line number Diff line change
@@ -39,11 +39,11 @@ archive_artifact(artifact_hash, tarball_path)
@info("Hashing tarball")
tarball_hash = open(io -> bytes2hex(sha256(io)), tarball_path)

# Upload it to `staticfloat/Sandbox.jl`
# Upload it to `JuliaContainerization/Sandbox.jl`
tag_name = "multiarch-testing-$(bytes2hex(artifact_hash.bytes[end-3:end]))"
@info("Uploading to staticfloat/Sandbox.jl@$(tag_name)")
@info("Uploading to JuliaContainerization/Sandbox.jl@$(tag_name)")
run(`$(ghr_jll.ghr()) -replace $(tag_name) $(tarball_path)`)
tarball_url = "https://github.com/staticfloat/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"
tarball_url = "https://github.com/JuliaContainerization/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"

# Bind it into our Artifacts.toml (advertising support for both glibc and musl)
bind_artifact!(
6 changes: 3 additions & 3 deletions contrib/debootstrap_example.jl
Original file line number Diff line number Diff line change
@@ -69,13 +69,13 @@ archive_artifact(artifact_hash, tarball_path)
@info("Hashing tarball")
tarball_hash = open(io -> bytes2hex(sha256(io)), tarball_path)

# Upload it to `staticfloat/Sandbox.jl`
# Upload it to `JuliaContainerization/Sandbox.jl`
tag_name = "debian-minimal-$(bytes2hex(artifact_hash.bytes[end-3:end]))"
@info("Uploading to staticfloat/Sandbox.jl@$(tag_name)")
@info("Uploading to JuliaContainerization/Sandbox.jl@$(tag_name)")
run(`$(ghr_jll.ghr()) -replace $(tag_name) $(tarball_path)`)

# Bind this artifact into our Artifacts.toml
tarball_url = "https://github.com/staticfloat/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"
tarball_url = "https://github.com/JuliaContainerization/Sandbox.jl/releases/download/$(tag_name)/$(basename(tarball_path))"
bind_artifact!(
joinpath(dirname(@__DIR__), "Artifacts.toml"),
"debian-minimal-rootfs",
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ makedocs(
)

deploydocs(
repo = "github.com/staticfloat/Sandbox.jl.git",
repo = "github.com/JuliaContainerization/Sandbox.jl.git",
push_preview = true,
devbranch = "main",
)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sandbox.jl Documentation

[`Sandbox.jl`](https://github.com/staticfloat/Sandbox.jl) provides basic
[`Sandbox.jl`](https://github.com/JuliaContainerization/Sandbox.jl) provides basic
containerization tools for running Linux guests on a variety of platforms.

## Index