mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-05 21:28:55 -06:00
15 lines
483 B
YAML
15 lines
483 B
YAML
sudo: required
|
|
|
|
language: c
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull odanoburu/haskell-gf:3.9
|
|
- mkdir rgl
|
|
|
|
script:
|
|
- docker run --mount src="$(pwd)",target=/home,type=bind odanoburu/haskell-gf:3.9 /bin/bash -c "cd /home/; export GF_LIB_PATH=/home/rgl ; runghc Make.hs build all --verbose ;"
|
|
- docker run --mount src="$(pwd)",target=/home,type=bind odanoburu/haskell-gf:3.9 /bin/bash -c "cd /home/; export GF_LIB_PATH=/home/rgl; sh Make.sh --dest=rgl --verbose ;"
|