Skip to content

Commit

Permalink
Allow to Compile Spanish build without network
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Feb 10, 2022
1 parent dca5576 commit 24580f6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,22 @@ jobs:
run: |
git clone https://github.com/ps2dev/ps2eth.git
cd ps2eth && make clean all install
- name: Compile wLaunchELF
run: |
SCH=${GITHUB_SHA::7}
echo "#include \"Lang/SPA.LNG\"">lang.h
make TMANIP=1
mv BOOT.ELF BOOT-SPA.ELF
mv BOOT-UNC.ELF BOOT-UNC-SPA.ELF
- name: Compile wLaunchELF without network modules
run: |
make clean
make TMANIP=1 ETH=0
mv BOOT.ELF BOOT-SPA_NO-NETWORK.ELF
mv BOOT-UNC.ELF BOOT-UNC-SPA_NO-NETWORK.ELF
- name: Get short SHA
id: slug
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
Expand All @@ -95,6 +104,7 @@ jobs:
name: wLaunchELF-spanish-${{ steps.slug.outputs.sha8 }}
path: |
*.ELF
- name: Create release
if: github.ref == 'refs/heads/master'
uses: marvinpinto/action-automatic-releases@latest
Expand Down

0 comments on commit 24580f6

Please sign in to comment.