Run apt-get remove with sudo #177
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The present workflow was made based on the following references: | |
# - https://github.com/actions/cache/blob/main/examples.md#haskell---cabal | |
# - https://github.com/haskell/time/blob/master/.github/workflows/ci.yml | |
# - https://github.com/stackbuilders/stache/blob/master/.github/workflows/ci.yaml | |
# - https://markkarpov.com/post/github-actions-for-haskell-ci.html | |
--- | |
name: Build | |
on: push | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
haskell: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
# - macos-13 # Intel | |
# - macos-14 # ARM | |
- ubuntu-latest | |
devShell: | |
- ghc810 | |
# - ghc90 | |
# exclude: | |
# - os: macos-14 # ARM | |
# devShell: ghc810 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get remove -y ghc cabal-install | |
- uses: cachix/install-nix-action@v22 | |
with: | |
# https://input-output-hk.github.io/haskell.nix/tutorials/getting-started.html | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org | |
# https://github.com/actions/cache/blob/main/examples.md#haskell---cabal | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cabal/packages | |
~/.cabal/store | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.devShell }}-${{ hashFiles('*.cabal') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.devShell }}- | |
- name: Install packages / Print versions | |
run: | | |
./bin/${{ matrix.devShell }} -c which ghc && ghc --version | |
./bin/${{ matrix.devShell }} -c which cabal && cabal --version | |
# - name: Update package index | |
# run: ./bin/${{ matrix.devShell }} -c cabal update | |
# - name: Enable tests | |
# run: ./bin/${{ matrix.devShell }} -c cabal configure --enable-tests | |
# - name: Install project dependencies | |
# run: ./bin/${{ matrix.devShell }} -c cabal build --only-dependencies | |
# - name: Compile project | |
# run: ./bin/${{ matrix.devShell }} -c cabal build | |
# - name: Run tests | |
# run: ./bin/${{ matrix.devShell }} -c cabal test | |
# - name: Check documentation | |
# run: ./bin/${{ matrix.devShell }} -c ./script/haddock | |
docker: | |
if: false | |
uses: ./.github/workflows/reusable-docker.yml | |
with: | |
push: false |