From 5d41ddbc2f22ec033ecd68e8b20a830fe8716a6b Mon Sep 17 00:00:00 2001 From: Andrey Tolstoy Date: Mon, 24 Oct 2022 01:59:38 +0700 Subject: [PATCH] [ci] debug --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d91d276dd2..b0ae2fe661 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -166,6 +166,9 @@ jobs: exit 0 fi COMBINE_BINARIES=$(head -n 1 <(find $HOME/workspace/release/ -name 'combine_binaries.sh')) + echo "=============================================" + cat $HOME/workspace/release/*/ref + echo "=============================================" RELEASE_REF=$(head -n 1 <(cat $HOME/workspace/release/*/ref)) $COMBINE_BINARIES $HOME/workspace/release $RELEASE_REF $HOME RESULT=$? @@ -247,11 +250,16 @@ jobs: git clone git@github.com:particle-iot/firmware-buildpack-builder.git -b "$BUILDPACK_BUILDER_VERSION" cd $HOME/device-os git submodule update --init --recursive + echo "=======================================" + echo "branch=$CIRCLE_BRANCH" + echo "tag=$CIRCLE_TAG" if [ -z "$CIRCLE_TAG" ]; then export ARTIFACT_TAG=$(echo "$CIRCLE_BRANCH" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9]/-/g')-$(git rev-parse --short HEAD) else export ARTIFACT_TAG=$CIRCLE_TAG fi + echo "final=$ARTIFACT_TAG" + echo "=======================================" echo "$ARTIFACT_TAG" > $HOME/device-os/.git/ref - run: name: "Run tests / build for platforms"