From f931dc9f844080cad40f98c3a7e035dd0926b9b2 Mon Sep 17 00:00:00 2001 From: Javier Neira Date: Mon, 21 Feb 2022 15:34:32 +0100 Subject: [PATCH] no sudo no way --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d90e8894e52..fe0ec17d1cc 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -128,10 +128,10 @@ jobs: - uses: actions/checkout@v2 - name: apt-get update - run: apt-get update + run: sudo apt-get update - name: Install extra compiler - run: apt-get install -y ghc-${{ matrix.extra-ghc }}-dyn + run: sudo apt-get install -y ghc-${{ matrix.extra-ghc }}-dyn - uses: haskell/actions/setup@v1 id: setup-haskell @@ -159,4 +159,4 @@ jobs: run: sh validate.sh -j 2 -w ghc-${{ matrix.ghc }} -v ${{ matrix.flags }} -s build - name: "Validate lib-suite-extras --extra-hc ghc-${{ matrix.extra-ghc }}" - run: sh validate.sh -j 2 -w ghc-${{ matrix.ghc }} -v --lib-only -s lib-suite-extras --extra-hc /opt/ghc/${{ matrix.extra-ghc }}/bin/ghc-${{ matrix.extra-ghc }} \ No newline at end of file + run: sh validate.sh -j 2 -w ghc-${{ matrix.ghc }} -v --lib-only -s lib-suite-extras --extra-hc /opt/ghc/${{ matrix.extra-ghc }}/bin/ghc-${{ matrix.extra-ghc }}