Skip to content

Commit

Permalink
ci: fix scripts/create_and_deploy_recipe.sh build (#5764)
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy authored Sep 29, 2023
1 parent 67275a6 commit 79fb8fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/build/Dockerfile-deploy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM --platform=linux/amd64 ubuntu:20.04
ARG GOLANG_VERSION

RUN apt-get update && apt-get install -y git wget autoconf jq bsdmainutils shellcheck
RUN apt-get update && apt-get install -y git wget autoconf jq bsdmainutils shellcheck make python3 libtool g++
WORKDIR /root
RUN wget --quiet https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz && tar -xvf go${GOLANG_VERSION}.linux-amd64.tar.gz && mv go /usr/local
ENV GOROOT=/usr/local/go \
Expand Down
3 changes: 3 additions & 0 deletions scripts/upload_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ SRCPATH=${SCRIPTPATH}/..
export CHANNEL=$2
export FULLVERSION=$($SRCPATH/scripts/compute_build_number.sh -f)

# prevent ._* files from being included in the tarball
export COPYFILE_DISABLE=true

TEMPDIR=$(mktemp -d -t "upload_config.tmp.XXXXXX")
TARFILE=${TEMPDIR}/config_${CHANNEL}_${FULLVERSION}.tar.gz

Expand Down

0 comments on commit 79fb8fe

Please sign in to comment.