Skip to content

Commit

Permalink
I dont understand why it doesnt work
Browse files Browse the repository at this point in the history
  • Loading branch information
FlareFlo committed Oct 9, 2023
1 parent 150f88b commit 555a8cd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/nightly_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,19 @@ jobs:
crate: cross
version: latest

# Clean because of https://github.com/cross-rs/cross/issues/724
- name: Clean cross cache
run: cross clean

- name: Build linux
run: cross clean & cargo build --release # Clean because of https://github.com/cross-rs/cross/issues/724
run: cargo build --release

# Clean because of https://github.com/cross-rs/cross/issues/724
- name: Clean cross cache
run: cross clean

- name: Build windows
run: cross clean & cross build --release --target x86_64-pc-windows-gnu # Clean because of https://github.com/cross-rs/cross/issues/724
run: cross build --release --target x86_64-pc-windows-gnu

- name: Rename windows bin
run: mv target/x86_64-pc-windows-gnu/release/wt_ext_cli.exe target/x86_64-pc-windows-gnu/release/wt_ext_cli-windows-x86.exe
Expand Down

0 comments on commit 555a8cd

Please sign in to comment.