From 2e600044c832c2bd9c1237f9c2f557fa8b5cd564 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 24 Mar 2024 23:09:24 -0500 Subject: [PATCH] Check on Boost git repo reference. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ceb8d09..5d36c19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,10 @@ jobs: - name: Install packages run: sudo apt install g++-12 git xsltproc docbook-xsl docbook-xml - name: Checkout main boost - run: git clone -b develop --depth 1 https://github.com/${GITHUB_REPOSITORY/bcp/boost}.git ../boost-root + run: | + BOOST_GIT=https://github.com/${GITHUB_REPOSITORY/bcp/boost}.git + echo "BOOST_GIT: ${BOOST_GIT}" + git clone -b develop --depth 1 "${BOOST_GIT}" ../boost-root - name: Update tools/boostdep run: git submodule update --init working-directory: ../boost-root