Skip to content

better io error messages #37

better io error messages

better io error messages #37

Workflow file for this run

# SPDX-FileCopyrightText: 2026 SombrAbsol
#
# SPDX-License-Identifier: MIT
name: Windows Nightly
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
env:
TARGET-RA2: ra2mes
TARGET-RA3: ra3mes
jobs:
build:
name: Build Windows nightly
runs-on: windows-2025
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Build Windows binaries
shell: bash
run: |
set -euo pipefail
make CC=clang
- name: Upload ${{ env.TARGET-RA2 }} Windows build artefact
uses: actions/upload-artifact@v7
with:
name: ${{ env.TARGET-RA2 }}-windows
path: |
build/${{ env.TARGET-RA2 }}.exe
LICENSE
if-no-files-found: error
- name: Upload ${{ env.TARGET-RA3 }} Windows build artefact
uses: actions/upload-artifact@v7
with:
name: ${{ env.TARGET-RA3 }}-windows
path: |
build/${{ env.TARGET-RA3 }}.exe
LICENSE
if-no-files-found: error