diff --git a/buildkitd/dockerd-wrapper.sh b/buildkitd/dockerd-wrapper.sh index eb179f3ba5..7e3b3db19b 100755 --- a/buildkitd/dockerd-wrapper.sh +++ b/buildkitd/dockerd-wrapper.sh @@ -64,7 +64,7 @@ execute() { mkdir /sys/fs/cgroup/dockerd-wrapper echo $$ > /sys/fs/cgroup/dockerd-wrapper/cgroup.procs - # earthly wraps dockerd-wrapper.sh with a call via /bin/sh -c '....' + # earthbuild wraps dockerd-wrapper.sh with a call via /bin/sh -c '....' # so we also need to move the parent pid into this new group, which is weird # TODO: we should unwrap this so $$ is all we need to move echo 1 > /sys/fs/cgroup/dockerd-wrapper/cgroup.procs diff --git a/scripts/install-all-versions.sh b/scripts/install-all-versions.sh index a138266dbd..9aa057a5d3 100755 --- a/scripts/install-all-versions.sh +++ b/scripts/install-all-versions.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # # This script will install all released versions of earthly under ~/bin/earthly-v -# It is intended for earthly developers who need to test against previous versions of earthly +# It is intended for earthbuild developers who need to test against previous versions of earthbuild # (e.g. making sure a new change doesn't break older versions, or testing out bug reports # against older versions). set -e diff --git a/scripts/tests/auth/test-hello-world-no-ssh-agent.sh b/scripts/tests/auth/test-hello-world-no-ssh-agent.sh index cde42fc9b0..6e6960353d 100755 --- a/scripts/tests/auth/test-hello-world-no-ssh-agent.sh +++ b/scripts/tests/auth/test-hello-world-no-ssh-agent.sh @@ -3,5 +3,5 @@ set -eu # don't use -x as it will leak the private key # shellcheck source=./setup.sh source "$(dirname "$0")/setup.sh" -# test earthly can access a public repo +# test earthbuild can access a public repo "$earthly" github.com/EarthBuild/hello-world:main+hello diff --git a/scripts/tests/auth/test-hello-world-no-ssh-keys.sh b/scripts/tests/auth/test-hello-world-no-ssh-keys.sh index fd248b2d78..6f7561ac6f 100755 --- a/scripts/tests/auth/test-hello-world-no-ssh-keys.sh +++ b/scripts/tests/auth/test-hello-world-no-ssh-keys.sh @@ -7,5 +7,5 @@ source "$(dirname "$0")/setup.sh" eval "$(ssh-agent)" ssh-add -l | grep 'The agent has no identities' -# test earthly can access a public repo +# test earthbuild can access a public repo "$earthly" github.com/EarthBuild/hello-world:main+hello diff --git a/scripts/tests/auth/test-hello-world-with-non-authorized-key.sh b/scripts/tests/auth/test-hello-world-with-non-authorized-key.sh index 71a797f6b7..904bcedf93 100755 --- a/scripts/tests/auth/test-hello-world-with-non-authorized-key.sh +++ b/scripts/tests/auth/test-hello-world-with-non-authorized-key.sh @@ -14,5 +14,5 @@ ssh-add /tmp/non-authorized-ssh-key # test that only the above key is loaded test "$(ssh-add -l | wc -l)" = "1" -# test earthly can access a public repo +# test earthbuild can access a public repo "$earthly" github.com/EarthBuild/hello-world:main+hello diff --git a/scripts/tests/auth/test-self-hosted.sh b/scripts/tests/auth/test-self-hosted.sh index c07f987bb3..433dc2da13 100755 --- a/scripts/tests/auth/test-self-hosted.sh +++ b/scripts/tests/auth/test-self-hosted.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# This script tests earthly can reference a self-hosted git repository. +# This script tests earthbuild can reference a self-hosted git repository. # The git repository runs in a second container which is spun up by GHA # and is accessible over the localhost on port 2222 ($SSH_PORT) # @@ -10,8 +10,8 @@ # 2. initializes a bare git repo on the ssh server # 3. create a new local git repo with a sample Earthfile # 4. pushes that local git repo up to the server, and deletes the local copy -# 5. configures earthly to be aware of the custom git repo running on port 2222 ($SSH_PORT) -# 6. and finally tests earthly can remotely reference the Earthfile without having a local copy. +# 5. configures earthbuild to be aware of the custom git repo running on port 2222 ($SSH_PORT) +# 6. and finally tests earthbuild can remotely reference the Earthfile without having a local copy. set -eu diff --git a/scripts/tests/backwards-compatibility.sh b/scripts/tests/backwards-compatibility.sh index 557fa2f0cc..3aa765b10d 100755 --- a/scripts/tests/backwards-compatibility.sh +++ b/scripts/tests/backwards-compatibility.sh @@ -32,7 +32,7 @@ echo "using frontend=$frontend" PATH="$(realpath ../acbtest):$PATH" -# prevent the self-update of earthly from running (this ensures no bogus data is printed to stdout, +# prevent the self-update of earthbuild from running (this ensures no bogus data is printed to stdout, # which would mess with the secrets data being fetched) date +%s > /tmp/last-earthly-prerelease-check @@ -45,7 +45,7 @@ echo "$earthly" # start buildkitd container "$earthly" bootstrap -# start a build using an older version of the earthly cli +# start a build using an older version of the earthbuild cli "$crustly" --no-buildkit-update -P ../../tests/with-docker+all # validate buildkitd container was compiled using the current branch diff --git a/scripts/tests/export.sh b/scripts/tests/export.sh index e058c2f0d4..7d1c56c1c3 100755 --- a/scripts/tests/export.sh +++ b/scripts/tests/export.sh @@ -13,7 +13,7 @@ echo "using frontend $frontend" PATH="$(realpath "$(dirname "$0")/../acbtest"):$PATH" -# prevent the self-update of earthly from running (this ensures no bogus data is printed to stdout, +# prevent the self-update of earthbuild from running (this ensures no bogus data is printed to stdout, # which would mess with the secrets data being fetched) date +%s > /tmp/last-earthly-prerelease-check @@ -97,7 +97,7 @@ cat >> Earthfile <&2 echo "Error: frontend is empty" && exit 1) -# NOTE: the "old behaviour" tests were removed when earthly v0.8 was released +# NOTE: the "old behaviour" tests were removed when earthbuild v0.8 was released # which obsoleted VERSION 0.5 functionality. TODO: rename "new behaviour to current behaviour" echo "=== ($LINENO): Test New Behaviour ===" diff --git a/tests/try-catch/docker-try-finally-fail/test.sh b/tests/try-catch/docker-try-finally-fail/test.sh index 967f9d14d4..2bfe2deb03 100755 --- a/tests/try-catch/docker-try-finally-fail/test.sh +++ b/tests/try-catch/docker-try-finally-fail/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/try-catch/test.sh b/tests/try-catch/test.sh index cc0d073e5b..1a390eb739 100755 --- a/tests/try-catch/test.sh +++ b/tests/try-catch/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -ue set -o pipefail diff --git a/tests/try-catch/try-catch-not-currently-implemented/test.sh b/tests/try-catch/try-catch-not-currently-implemented/test.sh index 2f4b12a11e..2b25d0c081 100755 --- a/tests/try-catch/try-catch-not-currently-implemented/test.sh +++ b/tests/try-catch/try-catch-not-currently-implemented/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/try-catch/try-finally-fail/test.sh b/tests/try-catch/try-finally-fail/test.sh index 390d8d58ed..b438639258 100755 --- a/tests/try-catch/try-finally-fail/test.sh +++ b/tests/try-catch/try-finally-fail/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/try-catch/try-finally-if-exists/test.sh b/tests/try-catch/try-finally-if-exists/test.sh index 371b7ebbbe..63d92f328d 100755 --- a/tests/try-catch/try-finally-if-exists/test.sh +++ b/tests/try-catch/try-finally-if-exists/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/try-catch/try-finally-pass/test.sh b/tests/try-catch/try-finally-pass/test.sh index c6c00e2198..44b7059be4 100755 --- a/tests/try-catch/try-finally-pass/test.sh +++ b/tests/try-catch/try-finally-pass/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/try-catch/try-finally-two-files/test.sh b/tests/try-catch/try-finally-two-files/test.sh index c3ede92a48..dc658986a7 100755 --- a/tests/try-catch/try-finally-two-files/test.sh +++ b/tests/try-catch/try-finally-two-files/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly) +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild) set -uxe set -o pipefail diff --git a/tests/wait-block/common/test.sh b/tests/wait-block/common/test.sh index e278753778..d2764d83d7 100755 --- a/tests/wait-block/common/test.sh +++ b/tests/wait-block/common/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This test is designed to be run directly by github actions or on your host (i.e. not earthly-in-earthly); +# This test is designed to be run directly by github actions or on your host (i.e. not earthbuild-in-earthbuild); # as a result, you may run into issues if you have a firewall which prevents access to the registry -- make sure access to it's port is open set -uxe set -o pipefail