CI: don't strip in CI

it's already in the scripts
This commit is contained in:
2024-07-15 21:59:01 +02:00
parent 7b84cfaeea
commit cc6262bec7

View File

@@ -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