We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2faa9d1 commit 35f8924Copy full SHA for 35f8924
1 file changed
.github/workflows/build_xbox360.yml
@@ -0,0 +1,22 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Install dependencies
16
+ run: apt update -yy && apt install -yy build-essential
17
18
+ - name: Configure defconfig
19
+ run: make xbox360_defconfig
20
21
+ - name: Build
22
+ run: make
0 commit comments