blob: d3818175644b49fa82c6537fc431eb20ec34c9ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
job build:
shell: |
cabal build --ghc-options='-Werror -Wno-error=unused-imports' --constraint='megaparsec >= 9.7.0'
mkdir build
cp $(cabal list-bin erebos-tester) build/erebos-tester
artifact bin:
path: build/erebos-tester
job test:
uses:
- build.bin
shell:
- EREBOS_TEST_TOOL='build/erebos-tester --test-mode' erebos-tester --verbose
|