-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (38 loc) · 951 Bytes
/
build-windows.yml
File metadata and controls
46 lines (38 loc) · 951 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
37
38
39
40
41
42
43
44
45
46
name: Windows Nightly
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: Build Windows nightly
runs-on: windows-2025
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install toolchain
run: |
choco install -y mingw make
- name: Build Windows binaries
shell: bash
run: |
set -euo pipefail
make
- name: Upload ra2mes Windows build artefact
uses: actions/upload-artifact@v4
with:
name: ra2mes-windows
path: ra2mes.exe
if-no-files-found: error
- name: Upload ra3mes Windows build artefact
uses: actions/upload-artifact@v4
with:
name: ra3mes-windows
path: ra3mes.exe
if-no-files-found: error