Skip to content

Commit

Permalink
Make workflow build variant without network
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Feb 9, 2022
1 parent b76fa73 commit 6f882b3
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/compilation.yml
Expand Up @@ -23,12 +23,20 @@ jobs:
- name: Install ps2eth
run: |
git clone https://github.com/ps2dev/ps2eth.git
cd ps2eth && make clean all install
cd ps2eth
make clean all install
- name: Compile wLaunchELF
- name: Compile wLaunchELF without network
run: |
make
make clean all ETH=0
cp ULE_ISR_HDD.ELF ULE_ISR_HDD_NO-NETWORK.ELF
cp ULE_ISR_HDD-UNC.ELF ULE_ISR_HDD-UNC_NO-NETWORK.ELF
- name: Compile wLaunchELF with network
run: |
make clean
make ETH=1
- name: Get short SHA
id: slug
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
Expand Down

0 comments on commit 6f882b3

Please sign in to comment.