From 6f882b3657f8463892642c587d86b34bcfbd8069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Israelson?= <57065102+israpps@users.noreply.github.com> Date: Wed, 9 Feb 2022 16:32:36 -0300 Subject: [PATCH] Make workflow build variant without network --- .github/workflows/compilation.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index d4faa2b..24cd266 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -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)"