68 lines
1.8 KiB
YAML
68 lines
1.8 KiB
YAML
name: CI (Windows)
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- '3rdparty/**'
|
|
- 'scripts/**'
|
|
- 'src/**'
|
|
- 'COPYING'
|
|
- 'makefile'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- '3rdparty/**'
|
|
- 'scripts/**'
|
|
- 'src/**'
|
|
- 'COPYING'
|
|
- 'makefile'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-windows:
|
|
strategy:
|
|
matrix:
|
|
compiler: [gcc-x64]
|
|
include:
|
|
- compiler: gcc-x64
|
|
os: windows-latest
|
|
msys: UCRT64
|
|
slug: mingw-w64-ucrt-x86_64
|
|
cc: gcc
|
|
cxx: g++
|
|
subtarget: mame
|
|
executable: mame
|
|
runs-on: ${{ matrix.os }}
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: msys2/setup-msys2@e9898307ac31d1a803454791be09ab9973336e1c # v2.31.1
|
|
with:
|
|
msystem: ${{ matrix.msys }}
|
|
install: git make ${{ matrix.slug }}-${{ matrix.cc }} ${{ matrix.slug }}-python ${{ matrix.slug }}-lld ${{ matrix.slug }}-llvm ${{ matrix.slug }}-libc++ ${{ matrix.extrapkg }}
|
|
- uses: actions/checkout@main
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Build
|
|
env:
|
|
OVERRIDE_AR: "llvm-ar"
|
|
OVERRIDE_CC: ${{ matrix.cc }}
|
|
OVERRIDE_CXX: ${{ matrix.cxx }}
|
|
ARCHOPTS: "-fuse-ld=lld"
|
|
SUBTARGET: ${{ matrix.subtarget }}
|
|
SOURCES: sinclair/sprinter.cpp,sinclair/evo/tsconf.cpp,sinclair/next/specnext.cpp,sinclair/evo/pentevo.cpp,sinclair/spectrum.cpp,sinclair/spec128.cpp,sinclair/specpls3.cpp,sinclair/scorpion.cpp
|
|
TOOLS: 1
|
|
run: make -j2
|
|
- uses: actions/upload-artifact@main
|
|
with:
|
|
name: ${{ matrix.executable }}-windows-${{ matrix.compiler }}-${{ github.sha }}
|
|
path: |
|
|
${{ matrix.executable }}.exe
|
|
chdman.exe
|
|
unidasm.exe
|
|
if-no-files-found: error
|