try building the compiler

This commit is contained in:
Krasimir Angelov
2023-02-24 08:09:26 +01:00
parent 4da2778776
commit 48fa373dc0

View File

@@ -52,11 +52,24 @@ jobs:
with:
ghc-version: 8
- name: run testsuite
- name: build and test the runtime
working-directory: ./src/runtime/haskell
run: |
cabal install --extra-lib-dirs=/usr/local/lib
cabal test --extra-lib-dirs=/usr/local/lib
- name: build the compiler
working-directory: ./src/compiler
run: |
cabal install
- name: Upload artifact
uses: actions/upload-artifact@master
with:
name: compiler-linux
path: |
/usr/local/bin/gf
linux-python:
name: Python (Linux)
runs-on: ubuntu-20.04