-
Notifications
You must be signed in to change notification settings - Fork 44
41 lines (32 loc) · 835 Bytes
/
check.yml
File metadata and controls
41 lines (32 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Check Executables Match
on:
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
build:
if: github.repository == 'Vatuu/silent-hill-decomp'
container: ghcr.io/vatuu/decomp-images-silent-hill:master
strategy:
fail-fast: true
matrix:
game_id: [ SLUS-00707 ]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
- name: "Setup Python"
run: pip3 install -r requirements.txt --break-system-packages
- name: "Copy ROM"
run: |
mkdir -p ./rom/image
cp -r -p /rom/* ./rom/image
- name: Setup Environment
run: make setup
- name: Check Executables Match
run: make check