use weeder #8
Workflow file for this run
This file contains 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
name: Dead code | |
on: | |
push: | |
paths: | |
- '**.hs' | |
- '**.cabal' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**.hs' | |
- '**.cabal' | |
branches: | |
- main | |
jobs: | |
weeder: | |
name: Weeder | |
runs-on: ubuntu-20.04 | |
timeout-minutes: | |
60 | |
container: | |
image: buildpack-deps:jammy | |
strategy: | |
matrix: | |
include: | |
- compiler: ghc-9.6.5 | |
compilerKind: ghc | |
compilerVersion: 9.6.5 | |
setup-method: ghcup | |
allow-failure: false | |
steps: | |
- name: apt | |
run: | | |
apt-get update | |
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5 | |
mkdir -p "$HOME/.ghcup/bin" | |
curl -sL https://downloads.haskell.org/ghcup/0.1.30.0/x86_64-linux-ghcup-0.1.30.0 > "$HOME/.ghcup/bin/ghcup" | |
chmod a+x "$HOME/.ghcup/bin/ghcup" | |
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false) | |
"$HOME/.ghcup/bin/ghcup" install cabal 3.12.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false) | |
env: | |
HCKIND: ${{ matrix.compilerKind }} | |
HCNAME: ${{ matrix.compiler }} | |
HCVER: ${{ matrix.compilerVersion }} | |
- name: Set PATH and environment variables | |
run: | | |
echo "$HOME/.cabal/bin" >> $GITHUB_PATH | |
echo "LANG=C.UTF-8" >> "$GITHUB_ENV" | |
echo "CABAL_DIR=$HOME/.cabal" >> "$GITHUB_ENV" | |
echo "CABAL_CONFIG=$HOME/.cabal/config" >> "$GITHUB_ENV" | |
HCDIR=/opt/$HCKIND/$HCVER | |
HC=$("$HOME/.ghcup/bin/ghcup" whereis ghc "$HCVER") | |
HCPKG=$(echo "$HC" | sed 's#ghc$#ghc-pkg#') | |
HADDOCK=$(echo "$HC" | sed 's#ghc$#haddock#') | |
echo "HC=$HC" >> "$GITHUB_ENV" | |
echo "HCPKG=$HCPKG" >> "$GITHUB_ENV" | |
echo "HADDOCK=$HADDOCK" >> "$GITHUB_ENV" | |
echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV" | |
HCNUMVER=$(${HC} --numeric-version|perl -ne '/^(\d+)\.(\d+)\.(\d+)(\.(\d+))?$/; print(10000 * $1 + 100 * $2 + ($3 == 0 ? $5 != 1 : $3))') | |
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV" | |
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV" | |
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV" | |
echo "HEADHACKAGE=false" >> "$GITHUB_ENV" | |
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV" | |
echo "GHCJSARITH=0" >> "$GITHUB_ENV" | |
env: | |
HCKIND: ${{ matrix.compilerKind }} | |
HCNAME: ${{ matrix.compiler }} | |
HCVER: ${{ matrix.compilerVersion }} | |
- name: env | |
run: | | |
env | |
- uses: actions/checkout@v4 | |
- name: restore cache | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} | |
path: ~/.cabal/store | |
restore-keys: ${{ runner.os }}-${{ matrix.compiler }}- | |
- run: | | |
echo "Current dir:" | |
pwd | |
echo "dir contents:" | |
ls | |
cabal clean | |
cabal build -O0 -j all | |
- uses: freckle/weeder-action@v2 | |
with: | |
ghc-version: ${{ matrix.compilerVersion }} |