Skip to content

Commit

Permalink
Ok ok I'll build without LTO for now...
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoRiether committed May 30, 2023
1 parent d2a0a4b commit b6fdd39
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
# https://doc.rust-lang.org/nightly/rustc/platform-support.html
case:
- target: x86_64-pc-windows-msvc
output: target/x86_64-pc-windows-msvc/release-lto/fpgrars.exe
finalOutput: target/x86_64-pc-windows-msvc/release-lto/fpgrars-x86_64-pc-windows-msvc
output: target/x86_64-pc-windows-msvc/release/fpgrars.exe
finalOutput: target/x86_64-pc-windows-msvc/release/fpgrars-x86_64-pc-windows-msvc
finalOutputExt: .exe
os: windows-latest
- target: x86_64-unknown-linux-gnu
output: target/x86_64-unknown-linux-gnu/release-lto/fpgrars
finalOutput: target/x86_64-unknown-linux-gnu/release-lto/fpgrars-x86_64-unknown-linux-gnu
output: target/x86_64-unknown-linux-gnu/release/fpgrars
finalOutput: target/x86_64-unknown-linux-gnu/release/fpgrars-x86_64-unknown-linux-gnu
finalOutputExt: ""
os: ubuntu-latest
- target: x86_64-apple-darwin
output: target/x86_64-apple-darwin/release-lto/fpgrars
finalOutput: target/x86_64-apple-darwin/release-lto/fpgrars-x86_64-apple-darwin
output: target/x86_64-apple-darwin/release/fpgrars
finalOutput: target/x86_64-apple-darwin/release/fpgrars-x86_64-apple-darwin
finalOutputExt: ""
os: macos-latest
features:
Expand All @@ -46,7 +46,7 @@ jobs:
with:
command: build
target: ${{ matrix.case.target }}
args: "--profile release-lto --features=${{ matrix.features.list }}"
args: "--profile release --features=${{ matrix.features.list }}"
strip: true
- name: Rename output
run: mv ${{ matrix.case.output }} ${{ matrix.case.finalOutput }}${{ matrix.features.output-add }}${{ matrix.case.finalOutputExt }}
Expand Down

0 comments on commit b6fdd39

Please sign in to comment.