From f2f78c4cee2648847ba0d029423239deb94d180d Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Thu, 29 Feb 2024 14:54:35 +0100 Subject: [PATCH] more debug info --- .github/workflows/Tasmota_build_devel.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Tasmota_build_devel.yml b/.github/workflows/Tasmota_build_devel.yml index acabcc351..98ef9e367 100644 --- a/.github/workflows/Tasmota_build_devel.yml +++ b/.github/workflows/Tasmota_build_devel.yml @@ -30,6 +30,7 @@ jobs: COMMIT_SHA_LONG=$(git rev-parse --short HEAD || echo "") COMMIT_SHA_SHORT=${COMMIT_SHA_LONG::7} echo "COMMIT_SHA=$COMMIT_SHA_SHORT" >> $GITHUB_ENV + echo ${{ env.COMMIT_SHA }} - name: Install clang compiler run: | sudo apt-get install -f clang @@ -121,7 +122,8 @@ jobs: - name: Add SHA to footer run: | SHA=${{ env.COMMIT_SHA }} - sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT = \"$SHA-\"/g" ./tasmota/include/tasmota_version.h + echo $SHA + sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT \"$SHA-\"/g" ./tasmota/include/tasmota_version.h - name: Run PlatformIO run: platformio run -e ${{ matrix.variant }} - name: Upload safeboot firmware artifacts @@ -163,7 +165,8 @@ jobs: - name: Add SHA to footer run: | SHA=${{ env.COMMIT_SHA }} - sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT = \"$SHA-\"/g" ./tasmota/include/tasmota_version.h + echo $SHA + sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT \"$SHA-\"/g" ./tasmota/include/tasmota_version.h - name: Run PlatformIO run: platformio run -e ${{ matrix.variant }} - name: Upload firmware artifacts @@ -219,7 +222,8 @@ jobs: - name: Add SHA to footer run: | SHA=${{ env.COMMIT_SHA }} - sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT = \"$SHA-\"/g" ./tasmota/include/tasmota_version.h + echo $SHA + sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT \"$SHA-\"/g" ./tasmota/include/tasmota_version.h - name: Run PlatformIO run: platformio run -e ${{ matrix.variant }} - name: Upload firmware artifacts @@ -259,7 +263,8 @@ jobs: - name: Add SHA to footer run: | SHA=${{ env.COMMIT_SHA }} - sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT = \"$SHA-\"/g" ./tasmota/include/tasmota_version.h + echo $SHA + sed -i -e "s/TASMOTA_SHA_SHORT/TASMOTA_SHA_SHORT \"$SHA-\"/g" ./tasmota/include/tasmota_version.h - name: Run PlatformIO run: platformio run -e ${{ matrix.variant }}-${{ matrix.language }} - name: Upload language firmware artifacts