From 3b7c231db149efe932a81a00a96804cef85ae1ad Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Sat, 14 Jan 2023 10:55:34 +0900 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index da15c89..3971f14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,20 +18,20 @@ jobs: # Ubuntu - name: Install dependencies (Ubuntu) shell: bash - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' run: | sudo apt-get update sudo apt-get install -y build-essential - name: Build recomp binary (Ubuntu) shell: bash - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04t' run: | make -j $(nproc) RELEASE=1 DEBUG=0 setup - name: Run the build script (Ubuntu) shell: bash - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' run: | make -j $(nproc) RELEASE=1 DEBUG=0 VERSION=${{ matrix.ido }}