FG42/.gitlab-ci.yml

12 lines
307 B
YAML
Raw Normal View History

2020-03-16 00:14:39 +00:00
stages:
- build
build:
image: debian:stable-slim
2020-03-16 00:14:39 +00:00
stage: build
before_script:
- apt update && apt install -y make wget git emacs suod
- git clone https://gitlab.com/FG42/FG42 ~/.fg42/ && cd ~/.fg42/ && make install && touch empty.el
2020-03-16 00:14:39 +00:00
script:
- fg42 -nw --script empty.el && echo "Done"