mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
33f5ab983d
* Restricted Linux CI build to only run on changes to code, translations, software lists, and build scripts. * Restricted Windows/macOS CO to only run on changes to code and build scripts. They provide nothing over Linux for the other stuff. * Added plugin properties and controller file validation to the "hash" workflow. * Added a workflow for building documentation, so pull requests that affect documentation will at least get a basic check in advance. -plugins/autofire: Bumped version as configuration format has changed.
45 lines
931 B
YAML
45 lines
931 B
YAML
name: CI (Windows)
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/**'
|
|
- '3rdparty/**'
|
|
- 'scripts/**'
|
|
- 'src/**'
|
|
- 'COPYING'
|
|
- 'makefile'
|
|
pull_request:
|
|
paths:
|
|
- '.github/**'
|
|
- '3rdparty/**'
|
|
- 'scripts/**'
|
|
- 'src/**'
|
|
- 'COPYING'
|
|
- 'makefile'
|
|
|
|
jobs:
|
|
|
|
build-windows-gcc:
|
|
runs-on: windows-latest
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
install: git make mingw-w64-x86_64-gcc mingw-w64-x86_64-python mingw-w64-x86_64-lld mingw-w64-x86_64-libc++
|
|
- uses: actions/checkout@master
|
|
- name: Build
|
|
env:
|
|
MINGW64: "/mingw64"
|
|
ARCHOPTS: "-fuse-ld=lld"
|
|
OVERRIDE_AR: "llvm-ar"
|
|
TOOLS: 1
|
|
run: make -j2
|
|
- name: Validate
|
|
run: ./mame -validate
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: mame-windows-gcc-${{ github.sha }}
|
|
path: mame.exe
|