mirror of
https://github.com/nushell/nushell.git
synced 2025-01-24 07:09:02 +01:00
add the ability to strip the debug symbols for smaller binaries on mac and linux
This commit is contained in:
parent
493bc2b1c9
commit
d09e1148b2
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@ -28,6 +28,9 @@ jobs:
|
|||||||
command: build
|
command: build
|
||||||
args: --release --all --features=extra
|
args: --release --all --features=extra
|
||||||
|
|
||||||
|
- name: Strip release binary (linux)
|
||||||
|
run: strip "target/${{ matrix.target }}/release/nu*"
|
||||||
|
|
||||||
- name: Create output directory
|
- name: Create output directory
|
||||||
run: mkdir output
|
run: mkdir output
|
||||||
|
|
||||||
@ -70,6 +73,9 @@ jobs:
|
|||||||
command: build
|
command: build
|
||||||
args: --release --all --features=extra
|
args: --release --all --features=extra
|
||||||
|
|
||||||
|
- name: Strip release binary (macos)
|
||||||
|
run: strip "target/${{ matrix.target }}/release/nu*"
|
||||||
|
|
||||||
- name: Create output directory
|
- name: Create output directory
|
||||||
run: mkdir output
|
run: mkdir output
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user