workflow update

This commit is contained in:
Piotr Siuszko 2022-09-26 08:26:20 +02:00
parent 0385fb8bf5
commit 2257948203
2 changed files with 22 additions and 1 deletions

View File

@ -13,7 +13,7 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
build: build-unix:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install dep - name: Install dep

21
.github/workflows/windows_rust.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Windows Build
on:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-2022
steps:
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v2
- name: Build
run: cd egui_client && cargo build --release --verbose
- uses: actions/upload-artifact@v3
with:
name: build-exe
path: egui_client/target/release/*exe