mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
92 lines
2.9 KiB
YAML
92 lines
2.9 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:
|
|
- resolver: lts-16 # GHC 8.8
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-18 # GHC 8.10
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-19 # GHC 9.0
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-20 # GHC 9.2
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-21 # GHC 9.4
|
|
yaml: stack-master.yaml
|
|
- resolver: lts-22 # GHC 9.6
|
|
yaml: stack.yaml
|
|
- resolver: lts-22 # GHC 9.6
|
|
yaml: stack-master.yaml
|
|
|
|
steps:
|
|
- name: Clone project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install C dependencies
|
|
run: |
|
|
set -ex
|
|
sudo apt update -y
|
|
sudo apt install -y \
|
|
libx11-dev \
|
|
libxext-dev \
|
|
libxft-dev \
|
|
libxinerama-dev \
|
|
libxrandr-dev \
|
|
libxss-dev \
|
|
#
|
|
|
|
- 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. Additionally, the
|
|
# date is prefixed with an epoch number to let us manually refresh the
|
|
# cache when needed. This is a workaround for https://github.com/actions/cache/issues/2
|
|
run: |
|
|
date +date=1-%Y-%m >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache Haskell package metadata
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.stack/pantry
|
|
key: stack-pantry-${{ runner.os }}-${{ steps.cache-date.outputs.date }}
|
|
|
|
- name: Cache Haskell dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.stack/*
|
|
!~/.stack/pantry
|
|
!~/.stack/programs
|
|
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 }}-
|
|
|
|
- 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
|