Skip to content

Commit

Permalink
Add github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed Feb 1, 2025
1 parent 508ebb8 commit 769dd6f
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: github-action

on: [push, pull_request]

jobs:
build:
strategy:
fail-fast: false
matrix:
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10']
os: ['ubuntu-latest', 'macos-13'] # https://github.com/haskell-actions/setup/issues/77
runs-on: ${{ matrix.os }}

name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
path: ~/.cabal
key: ${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}-
${{ runner.os }}-${{ matrix.ghc }}-build-
${{ runner.os }}-${{ matrix.ghc }}-
${{ runner.os }}
- name: Install system packages (linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt install libsodium-dev
- name: Install system packages (macos)
if: matrix.os == 'macos-13'
run: |
brew update
brew install libsodium
- name: Set up cabal project file for CI
run: cd lib && cp cabal.project.ci cabal.project

- name: Install dependencies
run: |
cabal update
cd lib && cabal build --only-dependencies --enable-tests --enable-benchmarks all
- name: Build obelisk libraries
run: cd lib && cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cd lib && cabal test all
18 changes: 18 additions & 0 deletions lib/cabal.project.ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
packages:
./executable-config/inject
./executable-config/lookup
./frontend
./route
./tabulation

if !arch(javascript)
packages:
./asset/manifest
./asset/serve-snap
./backend
-- ./command
./run
-- ./selftest
./snap-extras

import: cabal.dependencies.project

0 comments on commit 769dd6f

Please sign in to comment.