From 542780f2f27c9e0272de3993f8f5500d3972a42b Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 21 Feb 2020 14:00:18 -0800 Subject: [PATCH] fix --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 30ec569..185f57f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,11 +30,12 @@ jobs: - name: Install ninja (linux) run: sudo apt install ninja-build if: matrix.os == 'ubuntu-latest' - - name: Build + - name: Build (sudo) run: sudo make -j4 package - if: matrix.os != 'ubuntu-latest' + if: matrix.os != 'windows-latest' - name: Build (windows) run: make -j4 package + if: matrix.os == 'windows-latest' - name: Run the testsuite run: make check if: matrix.os == 'ubuntu-latest'