mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-22 21:24:49 +02:00
github: Remove strip from Windows deploy/nightly (#472)
Removes `strip` from the Windows build in deploy/nightly. It seems to cause VirusTotal to report some false positives.
This commit is contained in:
parent
1c67a885f5
commit
c67ba4c497
7
.github/workflows/deployment.yml
vendored
7
.github/workflows/deployment.yml
vendored
@ -96,7 +96,7 @@ jobs:
|
|||||||
target: "x86_64-pc-windows-msvc",
|
target: "x86_64-pc-windows-msvc",
|
||||||
cross: false,
|
cross: false,
|
||||||
}
|
}
|
||||||
- { os: "windows-2019", target: "i686-pc-windows-msvc", cross: true }
|
- { os: "windows-2019", target: "i686-pc-windows-msvc", cross: false }
|
||||||
- {
|
- {
|
||||||
os: "windows-2019",
|
os: "windows-2019",
|
||||||
target: "x86_64-pc-windows-gnu",
|
target: "x86_64-pc-windows-gnu",
|
||||||
@ -193,11 +193,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
|
cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
|
||||||
|
|
||||||
- name: Strip release binary (Windows x86-64/i686)
|
|
||||||
if: matrix.triple.os == 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
|
||||||
run: |
|
|
||||||
strip target/${{ matrix.triple.target }}/release/btm.exe
|
|
||||||
|
|
||||||
- name: Strip release binary (macOS or Linux x86-64/i686)
|
- name: Strip release binary (macOS or Linux x86-64/i686)
|
||||||
if: matrix.triple.os != 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
if: matrix.triple.os != 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
||||||
run: |
|
run: |
|
||||||
|
7
.github/workflows/nightly.yml
vendored
7
.github/workflows/nightly.yml
vendored
@ -87,7 +87,7 @@ jobs:
|
|||||||
target: "x86_64-pc-windows-msvc",
|
target: "x86_64-pc-windows-msvc",
|
||||||
cross: false,
|
cross: false,
|
||||||
}
|
}
|
||||||
- { os: "windows-2019", target: "i686-pc-windows-msvc", cross: true }
|
- { os: "windows-2019", target: "i686-pc-windows-msvc", cross: false }
|
||||||
- {
|
- {
|
||||||
os: "windows-2019",
|
os: "windows-2019",
|
||||||
target: "x86_64-pc-windows-gnu",
|
target: "x86_64-pc-windows-gnu",
|
||||||
@ -179,11 +179,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
|
cp -r ./target/${{ matrix.triple.target }}/release/build/bottom-*/out completion
|
||||||
|
|
||||||
- name: Strip release binary (Windows x86-64/i686)
|
|
||||||
if: matrix.triple.os == 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
|
||||||
run: |
|
|
||||||
strip target/${{ matrix.triple.target }}/release/btm.exe
|
|
||||||
|
|
||||||
- name: Strip release binary (macOS or Linux x86-64/i686)
|
- name: Strip release binary (macOS or Linux x86-64/i686)
|
||||||
if: matrix.triple.os != 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
if: matrix.triple.os != 'windows-2019' && matrix.triple.target != 'aarch64-unknown-linux-gnu' && matrix.triple.target != 'armv7-unknown-linux-gnueabihf' && matrix.triple.target != 'powerpc64le-unknown-linux-gnu'
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user