Skip to content

Commit

Permalink
Modify CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mbg committed Dec 24, 2022
1 parent d969ca9 commit af21641
Showing 1 changed file with 8 additions and 78 deletions.
86 changes: 8 additions & 78 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,69 +1,10 @@
name: CI

on:
pull_request:
types: [synchronize, opened, reopened]
push:
branches: [main]
schedule:
# additionally run once per week (At 00:00 on Sunday) to maintain cache
- cron: '0 0 * * 0'
branches: [upload-binary]

jobs:
build:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
cabal: ["3.2"]
ghc:
- "8.8.4"
- "8.10.4"
exclude:
- os: macOS-latest
ghc: 8.8.4
- os: windows-latest
ghc: 8.8.4
steps:
- uses: actions/checkout@v3

- uses: haskell/actions/[email protected]
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}

- name: Freeze
run: |
cabal freeze
- uses: actions/[email protected]
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}

- name: Build
run: |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all
- name: Test
run: |
cabal test stan-test
- if: matrix.os == 'windows-latest'
name: Dogfooding on Windows
run: |
cabal run stan -- --config-file=.stan-windows.toml
- if: matrix.os != 'windows-latest'
name: Dogfooding
run: |
cabal run stan
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -95,23 +36,12 @@ jobs:
run: |
stack test --system-ghc
- name: Dogfooding
- name: Install
run: |
stack run stan --system-ghc
stack install --system-ghc --local-bin-path=.
hlint:
name: hlint
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run HLint
env:
HLINT_VERSION: "3.2.7"
run: |
curl https://raw.githubusercontent.com/kowainik/relude/v1.0.0.1/.hlint.yaml -o .hlint-relude.yaml
curl -L https://github.com/ndmitchell/hlint/releases/download/v${HLINT_VERSION}/hlint-${HLINT_VERSION}-x86_64-linux.tar.gz --output hlint.tar.gz
tar -xvf hlint.tar.gz
./hlint-${HLINT_VERSION}/hlint src/ test/ -h .hlint-relude.yaml
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: stan
path: ./stan

0 comments on commit af21641

Please sign in to comment.