-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (37 loc) · 1.19 KB
/
build_and_prerelease_windows.yml
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
37
38
39
40
41
42
name: Windows cross-build
on:
push:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build-windows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
target: x86_64-pc-windows-gnu
override: true
- uses: Swatinem/rust-cache@v1
- name: Dependencies
run: sudo apt update && sudo apt install libgtk-3-dev libcogl-pango-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev mingw-w64
- uses: actions-rs/cargo@v1
with:
command: build
toolchain: nightly
use-cross: true
args: --target x86_64-pc-windows-gnu --bins --release
- uses: ncipollo/release-action@v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"
allowUpdates: true
removeArtifacts: false
prerelease: true
draft: false
tag: latest
name: "Development Build"
generateReleaseNotes: true
artifacts: "target/x86_64-pc-windows-gnu/release/*.exe,target/x86_64-pc-windows-gnu/release/locomotive.exe"