From cc6262bec763b83a5b51b9f8ac45742eb0f2b2df Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Mon, 15 Jul 2024 21:59:01 +0200 Subject: [PATCH] CI: don't strip in CI it's already in the scripts --- .github/workflows/ficus.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/ficus.yml b/.github/workflows/ficus.yml index fcac131d7..71b7b2f68 100644 --- a/.github/workflows/ficus.yml +++ b/.github/workflows/ficus.yml @@ -56,11 +56,6 @@ jobs: name: Build generic toolchain run: source env.sh && toolchain_scripts/build-all.sh && ccache -s - - if: ${{ steps.cache-toolchain.outputs.cache-hit != 'true' }} - name: Strip toolchain - continue-on-error: true - run: find toolchain -type f | xargs strip - - name: Save generic toolchain id: cache-toolchain-save uses: actions/cache/save@v4 @@ -88,11 +83,6 @@ jobs: name: Build ficus toolchain s1 run: source ${{github.workspace}}/env.sh && ${{github.workspace}}/ficus-toolchain/build-all.sh s1only && ccache -s - - if: ${{ steps.cache-toolchain-s1.outputs.cache-hit != 'true' }} - name: Strip toolchain - continue-on-error: true - run: find toolchain -type f | xargs strip - - name: Save s1 toolchain id: cache-toolchain-s1-save uses: actions/cache/save@v4