-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed CI/CD Windows automated builds to target x86_64-pc-windows-gnu
- Loading branch information
1 parent
cc28492
commit 0850749
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ jobs: | |
- name: Build (Windows) | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
run: | | ||
cargo build --release | ||
cargo build --release --target x86_64-pc-windows-gnu | ||
env: | ||
CFLAGS: -static-libstdc++ | ||
CXXFLAGS: -static-libstdc++ | ||
|
@@ -112,7 +112,7 @@ jobs: | |
uses: a7ul/[email protected] | ||
with: | ||
command: c | ||
files: target/release/adept.exe | ||
files: target/x86_64-pc-windows-gnu/release/adept.exe | ||
outPath: build-${{ matrix.os }}.tar.gz | ||
- name: Archive Build Result | ||
if: ${{ matrix.os != 'windows-latest' }} | ||
|
@@ -196,4 +196,4 @@ jobs: | |
files: > | ||
build-windows-latest.tar.gz | ||
build-macos-latest.tar.gz | ||
build-linux-latest.tar.gz | ||
build-ubuntu-latest.tar.gz |