Merge pull request #266 from turion/releasev1.1 #451
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
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '23 14 * * 2' | |
release: | |
name: build | |
jobs: | |
lint: | |
name: "Run hlint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up HLint | |
uses: haskell/actions/hlint-setup@v2 | |
- name: Run HLint | |
uses: haskell/actions/hlint-run@v2 | |
with: | |
fail-on: warning | |
fourmolu: | |
name: "Run fourmolu" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/run-fourmolu@v9 | |
with: | |
version: "0.11.0.0" | |
generateMatrix: | |
name: "Generate matrix from cabal" | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout base repo | |
uses: actions/checkout@v4 | |
- name: Extract the tested GHC versions | |
id: set-matrix | |
run: | | |
wget https://github.com/Kleidukos/get-tested/releases/download/v0.1.3.0/get-tested-0.1.3.0-linux-amd64 -O get-tested | |
chmod +x get-tested | |
./get-tested --ubuntu rhine/rhine.cabal >> $GITHUB_OUTPUT | |
build-cabal: | |
runs-on: ubuntu-latest | |
needs: generateMatrix | |
strategy: | |
matrix: ${{ fromJSON(needs.generateMatrix.outputs.matrix) }} | |
name: Haskell GHC ${{ matrix.ghc }} cabal | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
id: setup | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev | |
- name: Configure & plan | |
run: | | |
cabal configure --enable-tests --enable-benchmarks --disable-documentation | |
cabal build all --dry-run | |
# The last step generates dist-newstyle/cache/plan.json for the cache key. | |
- name: Restore Cabal cache | |
uses: actions/cache/restore@v3 | |
id: cache | |
env: | |
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-cabal-${{ steps.setup.outputs.cabal-version }} | |
with: | |
path: | | |
${{ steps.setup.outputs.cabal-store }} | |
dist-newstyle | |
key: ${{ env.key }}-plan-${{ hashFiles('**/plan.json') }} | |
restore-keys: ${{ env.key }} | |
- name: Cabal build dependencies | |
run: cabal build all --enable-tests --only-dependencies | |
- name: Save Cabal dependency cache | |
uses: actions/cache/save@v3 | |
if: ${{ steps.cache.outputs.cache-primary-key != steps.cache.outputs.cache-matched-key }} | |
with: | |
path: ${{ steps.setup.outputs.cabal-store }} | |
key: ${{ steps.cache.outputs.cache-primary-key }} | |
- name: Cabal build packages | |
run: cabal build all --enable-tests -fdev | |
- name: Cabal test | |
run: cabal test all --enable-tests --test-show-details=Always | |
build-stack: | |
runs-on: ubuntu-latest | |
needs: generateMatrix | |
strategy: | |
matrix: ${{ fromJSON(needs.generateMatrix.outputs.matrix) }} | |
name: Haskell GHC ${{ matrix.ghc }} stack | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev | |
- name: Cache stack build artifacts | |
uses: freckle/stack-cache-action@v2 | |
with: | |
stack-yaml: stack.${{ matrix.ghc }}.yaml | |
- name: Stack build and test | |
run: | | |
stack build --system-ghc --test --stack-yaml stack.${{ matrix.ghc }}.yaml | |
build-flake: | |
name: Nix Flake | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v23 | |
- name: Build default package (rhine) | |
run: nix build | |
- name: Build rhine-examples | |
run: nix build .#rhine-examples | |
- name: Build rhine-gloss | |
run: nix build .#rhine-gloss | |
- name: Build rhine-bayes | |
run: nix build .#rhine-bayes | |
- name: Build rhine-terminal | |
run: nix build .#rhine-terminal | |
- name: Run tests | |
run: nix develop -c cabal test all | |
# nix flake check breaks on IFD in multi-platform flake https://github.com/NixOS/nix/issues/4265 | |
# - run: nix flake check |