Skip to content

Update ci-windows-taito_f3.yml #31

Update ci-windows-taito_f3.yml

Update ci-windows-taito_f3.yml #31

name: CI (Windows) (Taito F3)
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:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
strategy:
matrix:
compiler: [gcc]
include:
- compiler: gcc
cc: gcc
cxx: g++
subtarget: taito_f3
executable: taito_f3
steps:
- uses: msys2/setup-msys2@v2
with:
install: git make mingw-w64-x86_64-${{ matrix.compiler }} mingw-w64-x86_64-python mingw-w64-x86_64-lld mingw-w64-x86_64-llvm mingw-w64-x86_64-libc++
- uses: actions/checkout@master
- name: Build
env:
MINGW64: "/mingw64"
OVERRIDE_AR: "llvm-ar"
OVERRIDE_CC: ${{ matrix.cc }}
OVERRIDE_CXX: ${{ matrix.cxx }}
ARCHOPTS: "-fuse-ld=lld"
SUBTARGET: ${{ matrix.subtarget }}
TOOLS: 0
SOURCES: "src/mame/taito/taito_f3.cpp,src/mame/taito/taito_b.cpp"
run: make -j2
- uses: actions/upload-artifact@master
with:
name: ${{ matrix.executable }}-windows-${{ matrix.compiler }}-${{ github.sha }}
path: |
${{ matrix.executable }}.exe