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