mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
109 lines
3.3 KiB
YAML
109 lines
3.3 KiB
YAML
name: Stack
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Stack CI - Linux - ${{ matrix.resolver }} - ${{ matrix.yaml }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# XXX: temporarily disabled until xmonad 0.17 release
|
|
# - resolver: lts-12
|
|
# ghc: 8.4.4
|
|
# yaml: stack.yaml
|
|
- resolver: lts-12
|
|
ghc: 8.4.4
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-14
|
|
ghc: 8.6.5
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-16
|
|
ghc: 8.8.4
|
|
yaml: stack-master.yaml
|
|
# - resolver: lts-17
|
|
# ghc: 8.10.4
|
|
# yaml: stack.yaml
|
|
- resolver: lts-17
|
|
ghc: 8.10.4
|
|
yaml: stack-master.yaml
|
|
|
|
steps:
|
|
- name: Clone project
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Prepare apt sources
|
|
run: |
|
|
set -ex
|
|
sudo add-apt-repository -y ppa:hvr/ghc
|
|
sudo apt update -y
|
|
|
|
- name: Install C dependencies
|
|
run: |
|
|
set -ex
|
|
sudo apt install -y \
|
|
libx11-dev \
|
|
libxext-dev \
|
|
libxft-dev \
|
|
libxinerama-dev \
|
|
libxrandr-dev \
|
|
libxss-dev \
|
|
#
|
|
|
|
- name: Install GHC
|
|
# use system ghc in stack, don't waste GH Actions cache space
|
|
run: |
|
|
set -ex
|
|
sudo apt install -y ghc-${{ matrix.ghc }}
|
|
echo /opt/ghc/${{ matrix.ghc }}/bin >> $GITHUB_PATH
|
|
|
|
- name: Refresh caches once a month
|
|
id: cache-date
|
|
# GHA writes caches on the first miss and then never updates them again;
|
|
# force updating the cache at least once a month
|
|
run: |
|
|
echo "::set-output name=date::$(date +%Y-%m)"
|
|
|
|
- name: Cache Haskell package metadata
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.stack/pantry
|
|
key: stack-pantry-${{ runner.os }}-${{ steps.cache-date.outputs.date }}
|
|
restore-keys: |
|
|
stack-pantry-${{ runner.os }}-
|
|
|
|
- name: Cache Haskell dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.stack/*
|
|
!~/.stack/pantry
|
|
key: stack-${{ runner.os }}-${{ matrix.resolver }}-${{ steps.cache-date.outputs.date }}-${{ hashFiles(matrix.yaml) }}-${{ hashFiles('*.cabal') }}
|
|
restore-keys: |
|
|
stack-${{ runner.os }}-${{ matrix.resolver }}-${{ steps.cache-date.outputs.date }}-${{ hashFiles(matrix.yaml) }}-
|
|
stack-${{ runner.os }}-${{ matrix.resolver }}-${{ steps.cache-date.outputs.date }}-
|
|
stack-${{ runner.os }}-${{ matrix.resolver }}-
|
|
|
|
- name: Update hackage index
|
|
# always update index to prevent the shared ~/.stack/pantry cache from being empty
|
|
run: |
|
|
set -ex
|
|
stack update
|
|
|
|
- name: Build and test
|
|
run: |
|
|
set -ex
|
|
|
|
# workaround for stack/pantry caching of github archives
|
|
sed -e "s/@{today}/@{$(date -u --iso-8601=seconds)}/" -i ${{ matrix.yaml }}
|
|
|
|
stack test \
|
|
--fast --no-terminal \
|
|
--stack-yaml=${{ matrix.yaml }} \
|
|
--resolver=${{ matrix.resolver }} --system-ghc \
|
|
--flag=xmonad-contrib:pedantic
|