Skip to content

Commit

Permalink
no sudo no way
Browse files Browse the repository at this point in the history
  • Loading branch information
jneira authored Feb 21, 2022
1 parent 09d59a1 commit f931dc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
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 }}

0 comments on commit f931dc9

Please sign in to comment.