-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4343515
commit d1dbbfd
Showing
6 changed files
with
68 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build and Upload Artifacts | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Make Dist Directory | ||
shell: powershell | ||
run: | | ||
mkdir dist | ||
- name: Build - Mercury API v1 | ||
shell: powershell | ||
run: | | ||
$env:MERCURY_IO_API_VERSION = 1 | ||
cargo build | ||
cargo build --release | ||
cp target/debug/toucca.dll dist/toucca-debug-v1.dll | ||
cp target/release/toucca.dll dist/toucca-release-v1.dll | ||
- name: Upload v1 artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: API v1 | ||
path: | | ||
target/release/toucca.* | ||
target/debug/toucca.* | ||
- name: Build Debug - Mercury API v256 | ||
shell: powershell | ||
run: | | ||
$env:MERCURY_IO_API_VERSION = 256 | ||
cargo build | ||
cargo build --release | ||
cp target/debug/toucca.dll dist/toucca-debug-v256.dll | ||
cp target/release/toucca.dll dist/toucca-release-v256.dll | ||
- name: Upload v256 artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: API v256 | ||
path: | | ||
target/release/toucca.* | ||
target/debug/toucca.* | ||
- name: Upload Dist Directory | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/**/* |
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
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
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
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
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