Skip to content

Commit

Permalink
Merge branch 'main' of github.com:codedownio/sauron
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Dec 31, 2024
2 parents 1afd6d5 + 6c2b3ef commit fe24606
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 151 deletions.
88 changes: 25 additions & 63 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,76 +5,14 @@ on:
push:

jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
ghc:
# - "8.6.5"
# - "8.8.4"
# - "8.10.7"
# - "9.0.2"
# - "9.2.8"
- "9.4.8"
- "9.6.6"
- "9.8.2"
# exclude:
# - os: windows-latest
# ghc: 9.0.2
# - os: windows-latest
# ghc: 9.2.8

steps:
- uses: actions/checkout@v4

- uses: cachix/install-nix-action@v27
if: runner.os != 'Windows'
with:
# release-24.05
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libpcre3-dev
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "latest"

- name: Freeze
run: |
cabal freeze
- uses: actions/cache/restore@v4
id: cache-restore
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 all
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ghc: "9.6.4"
- ghc: "9.6.6"
yaml: "stack.yaml"

steps:
Expand Down Expand Up @@ -117,3 +55,27 @@ jobs:
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.yaml }}-stack

# nix:
# name: nix build .#${{ matrix.output }}
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# include:
# - output: normal

# # Tries to build a whole static GHC, which runs out of resources on GitHub runners
# # - output: static

# steps:
# - uses: actions/checkout@v4

# - uses: cachix/install-nix-action@v27
# with:
# # release-24.05
# nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz

# - uses: DeterminateSystems/magic-nix-cache-action@v8
# - name: Build
# run: nix build .#${{ matrix.output }}
Loading

0 comments on commit fe24606

Please sign in to comment.