File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change 1- name : Nintendo Switch CI
1+ name : Nintendo CI
22
33on :
44 push :
77 workflow_dispatch :
88
99jobs :
10- switch-build :
10+ build :
11+ name : Nintendo ${{ matrix.config.name }} CI
1112 runs-on : ubuntu-22.04
1213 container :
13- image : devkitpro/devkita64 # # base on debian:buster-slim
14+ image : devkitpro/${{ matrix.config.container }} # # base on debian:buster-slim
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ config :
19+ - name : 3ds
20+ extension : 3dsx
21+ container : devkitarm
22+
23+ - name : switch
24+ extension : nro
25+ container : devkita64
26+
1427 steps :
1528 - uses : actions/checkout@v4
1629 with :
@@ -30,10 +43,10 @@ jobs:
3043
3144 - name : Configure and Build
3245 run : |
33- bash ./platforms/build-switch .sh
46+ bash ./platforms/build-${{ matrix.config.name }} .sh
3447
3548 - name : Upload artifacts
3649 uses : actions/upload-artifact@v4
3750 with :
38- name : oopetris.nro
39- path : build-switch /oopetris.nro
51+ name : ${{ matrix.config.name }} Executable
52+ path : build-${{ matrix.config.name }} /oopetris.${{ matrix.config.extension }}
You can’t perform that action at this time.
0 commit comments