chore(ci): do not strip for aarch64
This commit is contained in:
parent
339eacce99
commit
5cc5995912
1 changed files with 12 additions and 10 deletions
22
.github/workflows/release.yml
vendored
22
.github/workflows/release.yml
vendored
|
|
@ -16,26 +16,26 @@ jobs:
|
|||
matrix:
|
||||
build:
|
||||
- linux musl x64
|
||||
#- linux musl aarch64
|
||||
- linux musl aarch64
|
||||
- macos x64
|
||||
#- macos aarch64
|
||||
- macos aarch64
|
||||
include:
|
||||
- build: linux musl x64
|
||||
os: ubuntu-latest
|
||||
rust: stable
|
||||
target: x86_64-unknown-linux-musl
|
||||
#- build: linux musl aarch64
|
||||
# os: ubuntu-latest
|
||||
# rust: stable
|
||||
# target: aarch64-unknown-linux-musl
|
||||
- build: linux musl aarch64
|
||||
os: ubuntu-latest
|
||||
rust: stable
|
||||
target: aarch64-unknown-linux-musl
|
||||
- build: macos x64
|
||||
os: macos-latest
|
||||
rust: stable
|
||||
target: x86_64-apple-darwin
|
||||
#- build: macos aarch64
|
||||
# os: macos-latest
|
||||
# rust: stable
|
||||
# target: aarch64-apple-darwin
|
||||
- build: macos aarch64
|
||||
os: macos-latest
|
||||
rust: stable
|
||||
target: aarch64-apple-darwin
|
||||
steps:
|
||||
- name: Set release tag
|
||||
run: |
|
||||
|
|
@ -85,7 +85,9 @@ 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"
|
||||
|
||||
- name: Create checksum
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue