This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
Update Rust crate relative-path to 1.9.3 #1135
Workflow file for this run
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
on: [push] | |
name: 'Build: Windows (x86_64)' | |
jobs: | |
windows_x86-64: | |
name: Windows (x86_64) | |
runs-on: windows-latest | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-gnu | |
target: x86_64-pc-windows-gnu | |
default: true | |
profile: minimal | |
- name: Build Dokkoo | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-features --target x86_64-pc-windows-gnu | |
- name: Prepare Dokkoo for upload | |
run: | | |
cd ./target/x86_64-pc-windows-gnu/release/ | |
tar -czvf x86_64-dokkoo.win32.zip ` | |
dokkoo.exe ` | |
dokkoo.dll ` | |
libdokkoo.a ` | |
libdokkoo.dll.a | |
- name: Upload Dokkoo build artifacts to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: x86_64-dokkoo.win32 | |
path: ./target/x86_64-pc-windows-gnu/release/x86_64-dokkoo.win32.zip | |
if-no-files-found: error |