Skip to content

Commit 2dc1dc3

Browse files
committed
Add cross-platform ROM-free build CI
1 parent bf87a3e commit 2dc1dc3

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
10+
concurrency:
11+
group: mph-build-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
windows:
16+
name: Build Windows
17+
uses: ./.github/workflows/build-windows.yml
18+
19+
linux:
20+
name: Build Linux
21+
uses: ./.github/workflows/build-linux.yml

0 commit comments

Comments
 (0)