Skip to content

Commit

Permalink
Update repo org. (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Oct 28, 2024
1 parent 50b2257 commit b9f62e0
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Artifacts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions contrib/build_docker_image.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions contrib/build_multiarch_testing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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!(
Expand Down
6 changes: 3 additions & 3 deletions contrib/debootstrap_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b9f62e0

Please sign in to comment.