Skip to content

Commit 24580f6

Browse files
authored
Allow to Compile Spanish build without network
1 parent dca5576 commit 24580f6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/compile.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,22 @@ jobs:
7777
run: |
7878
git clone https://github.com/ps2dev/ps2eth.git
7979
cd ps2eth && make clean all install
80+
8081
- name: Compile wLaunchELF
8182
run: |
8283
SCH=${GITHUB_SHA::7}
8384
echo "#include \"Lang/SPA.LNG\"">lang.h
8485
make TMANIP=1
8586
mv BOOT.ELF BOOT-SPA.ELF
8687
mv BOOT-UNC.ELF BOOT-UNC-SPA.ELF
88+
89+
- name: Compile wLaunchELF without network modules
90+
run: |
91+
make clean
92+
make TMANIP=1 ETH=0
93+
mv BOOT.ELF BOOT-SPA_NO-NETWORK.ELF
94+
mv BOOT-UNC.ELF BOOT-UNC-SPA_NO-NETWORK.ELF
95+
8796
- name: Get short SHA
8897
id: slug
8998
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
@@ -95,6 +104,7 @@ jobs:
95104
name: wLaunchELF-spanish-${{ steps.slug.outputs.sha8 }}
96105
path: |
97106
*.ELF
107+
98108
- name: Create release
99109
if: github.ref == 'refs/heads/master'
100110
uses: marvinpinto/action-automatic-releases@latest

0 commit comments

Comments
 (0)