cpu/tlcs900: using static constexpr uint8_t statements inside the dev… #107
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 (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: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
strategy: | |
matrix: | |
compiler: [gcc, clang] | |
include: | |
- compiler: gcc | |
cc: gcc | |
cxx: g++ | |
subtarget: mame | |
executable: mame | |
- compiler: clang | |
cc: clang | |
cxx: clang++ | |
subtarget: tiny | |
executable: mametiny | |
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: 1 | |
run: make -j2 | |
- name: Validate | |
run: ./${{ matrix.executable }}.exe -validate | |
- uses: actions/upload-artifact@master | |
with: | |
name: ${{ matrix.executable }}-windows-${{ matrix.compiler }}-${{ github.sha }} | |
path: | | |
${{ matrix.executable }}.exe | |
chdman.exe | |
unidasm.exe |