Skip to content

Commit

Permalink
ci(docker-build): add missing wrapper-library imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vpayno committed Mar 29, 2024
1 parent 6dd2be8 commit ca5ed6b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/docker/layer-00.05-additional_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ set -o pipefail
# shellcheck disable=SC1091
. /.github/docker/include

# shellcheck disable=SC1091
source /.github/citools/includes/wrapper-library || exit

main() {
declare -i retval=0

Expand Down
5 changes: 4 additions & 1 deletion .github/docker/layer-00.10-base-daggerio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ set -o pipefail
# shellcheck disable=SC1091
. /.github/docker/include

# shellcheck disable=SC1091
source /.github/citools/includes/wrapper-library || exit

main() {
layer_begin "${0}" "$@"

echo curl -sSfL https://releases.dagger.io/dagger/install.sh \| sh
curl -sSfL https://releases.dagger.io/dagger/install.sh | sh || exit
curl -sSfL https://releases.dagger.io/dagger/install.sh | sh || track_errors
printf "\n"

layer_end "${0}" "$@"
Expand Down
3 changes: 3 additions & 0 deletions .github/docker/layer-00.50-base-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ set -o pipefail
# shellcheck disable=SC1091
. /.github/docker/include

# shellcheck disable=SC1091
source /.github/citools/includes/wrapper-library || exit

main() {
declare -i retval=0

Expand Down

0 comments on commit ca5ed6b

Please sign in to comment.