chore(ci): do not strip binary

This commit is contained in:
Aram Drevekenin 2022-10-25 11:02:18 +02:00 committed by GitHub
parent 5cc5995912
commit f23ea515d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,10 +85,10 @@ jobs:
- name: Build release binary
run: cargo make ci-build-release ${{ matrix.target }}
# there currently seems to be an issue with strip in aarch64, TODO: investigate this
- name: Strip release binary
if: runner.target != 'aarch64-unknown-linux-musl' && runner.target != 'aarch64-apple-darwin'
run: strip "target/${{ matrix.target }}/release/zellij"
# this breaks on aarch64 and this if conditional isn't working for some reason: TODO: investigate
#- name: Strip release binary
# if: runner.target != 'aarch64-unknown-linux-musl' && runner.target != 'aarch64-apple-darwin'
# run: strip "target/${{ matrix.target }}/release/zellij"
- name: Create checksum
id: make-checksum