From 58047a8ddea3f2e59fed1701e912c1e15ad0af66 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Tue, 7 Apr 2020 14:17:36 -0700 Subject: [PATCH] windows doesnt have sudo --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1fdbfe1..ba9ac1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,11 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: Build run: sudo make -j4 package + if: matrix.os != 'windows-latest' + - name: Build + run: make -j4 package shell: bash + if: matrix.os == 'windows-latest' - name: Run the testsuite run: make check if: matrix.os == 'ubuntu-latest'