-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (36 loc) · 989 Bytes
/
driver_install.yml
File metadata and controls
37 lines (36 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: fornet driver installer build
on:
workflow_dispatch:
jobs:
WindowsCommandLine:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc
profile: minimal
- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
client/target/
key: windows-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: windows-cargo
- name: build
shell: pwsh
run: ./windows-build.ps1
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: fornet-driver-install
path: release/*
if-no-files-found: error