7 new WORKING plug and Play Units, 17 NOT WORKING Plug and Play Units, 3 Software List additions, 8 promotions #24123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (macOS) | |
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-macos: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: brew install python3 sdl2 | |
- name: Build | |
env: | |
USE_LIBSDL: 1 | |
TOOLS: 1 | |
run: make -j2 | |
- name: Validate | |
run: ./mame -validate | |
- uses: actions/upload-artifact@master | |
with: | |
name: mame-macos-${{ github.sha }} | |
path: | | |
mame | |
chdman | |
unidasm |