Skip to content

Commit

Permalink
Added ci scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed May 3, 2024
1 parent f2dbdd1 commit b6d5556
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci-hbmame.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI (HBMAME)

on: [push]

jobs:

build-windows-gcc:
runs-on: windows-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
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"
PTR64: "1"
run: make -j2 PTR64=1 TARGET=hbmame DEPRECATED=0 SYMBOLS=0 NO_SYMBOLS=1
- name: Validate
run: ./hbmame -validate
- uses: actions/upload-artifact@master
with:
name: hbmame-windows-gcc-${{ github.sha }}
path: hbmame.exe
28 changes: 28 additions & 0 deletions .github/workflows/ci-hbmameui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI (HBMAMEUI)

on: [push]

jobs:

build-windows-gcc:
runs-on: windows-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
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"
PTR64: "1"
run: make -j2 PTR64=1 OSD=winui TARGET=hbmame DEPRECATED=0 SYMBOLS=0 NO_SYMBOLS=1
- uses: actions/upload-artifact@master
with:
name: hbmameui-windows-gcc-${{ github.sha }}
path: hbmameui.exe
1 change: 1 addition & 0 deletions src/hbmame/drivers/neogeohb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ YEAR COMPANY TITLE
2023 Chips on Steroids Gladmort (youtube)
2023 Neofid Studios Daemon Claw: Origins of Nnar (https://twitter.com/DAsteborg/status/1696175973253734420)
2024 Neofid Studios Demons of Asteborg DX (https://neofidstudios.itch.io/demons-of-asteborg-dx)
2024 Rosenthal Castle Petal Crash (video on youtube) (https://rosenthalcastle.itch.io/petal-crash-neo)
*********************************************************************************************************/
Expand Down

0 comments on commit b6d5556

Please sign in to comment.