From 85fd803847736c1ac31a03d6e0a8ce7b8d30ca48 Mon Sep 17 00:00:00 2001 From: neodiX Date: Thu, 29 Dec 2022 00:47:55 +0100 Subject: [PATCH] build storage-daemon and storage-daemon-cli binaries --- .github/script/amd64-20.04.Dockerfile | 4 +++- .github/script/amd64-22.04.Dockerfile | 4 +++- .github/script/arm64-18.04.Dockerfile | 4 +++- .github/script/arm64-20.04.Dockerfile | 4 +++- .github/script/arm64-22.04.Dockerfile | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/script/amd64-20.04.Dockerfile b/.github/script/amd64-20.04.Dockerfile index 77f69d2b..30a447a6 100644 --- a/.github/script/amd64-20.04.Dockerfile +++ b/.github/script/amd64-20.04.Dockerfile @@ -6,7 +6,9 @@ RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gpe WORKDIR / -RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $branch +ARG BRANCH +ARG BRANCH_PARAM=$BRANCH +RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $BRANCH_PARAM WORKDIR /ton RUN mkdir /ton/build diff --git a/.github/script/amd64-22.04.Dockerfile b/.github/script/amd64-22.04.Dockerfile index 084cbed7..6db40261 100644 --- a/.github/script/amd64-22.04.Dockerfile +++ b/.github/script/amd64-22.04.Dockerfile @@ -6,7 +6,9 @@ RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gpe WORKDIR / -RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $branch +ARG BRANCH +ARG BRANCH_PARAM=$BRANCH +RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $BRANCH_PARAM WORKDIR /ton RUN mkdir /ton/build diff --git a/.github/script/arm64-18.04.Dockerfile b/.github/script/arm64-18.04.Dockerfile index 39c01342..bcb529ba 100644 --- a/.github/script/arm64-18.04.Dockerfile +++ b/.github/script/arm64-18.04.Dockerfile @@ -6,7 +6,9 @@ RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gpe WORKDIR / -RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $branch +ARG BRANCH +ARG BRANCH_PARAM=$BRANCH +RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $BRANCH_PARAM WORKDIR /ton RUN mkdir /ton/build diff --git a/.github/script/arm64-20.04.Dockerfile b/.github/script/arm64-20.04.Dockerfile index 42ff062a..e9777540 100644 --- a/.github/script/arm64-20.04.Dockerfile +++ b/.github/script/arm64-20.04.Dockerfile @@ -6,7 +6,9 @@ RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gpe WORKDIR / -RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $branch +ARG BRANCH +ARG BRANCH_PARAM=$BRANCH +RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $BRANCH_PARAM WORKDIR /ton RUN mkdir /ton/build diff --git a/.github/script/arm64-22.04.Dockerfile b/.github/script/arm64-22.04.Dockerfile index a62c3523..a607be41 100644 --- a/.github/script/arm64-22.04.Dockerfile +++ b/.github/script/arm64-22.04.Dockerfile @@ -6,7 +6,9 @@ RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gpe WORKDIR / -RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $branch +ARG BRANCH +ARG BRANCH_PARAM=$BRANCH +RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git && cd ton && git checkout $BRANCH_PARAM WORKDIR /ton RUN mkdir /ton/build