godot-tts/.gitlab-ci.yml

23 lines
361 B
YAML
Raw Normal View History

2019-09-07 15:17:51 +00:00
image: rust
stages:
2019-10-04 15:09:30 +00:00
- build
2019-09-07 15:17:51 +00:00
- publish
before_script:
- apt-get update
- apt-get install -y libclang-3.9-dev libspeechd-dev
- export CPATH=/usr/lib/llvm-3.9/lib/clang/3.9.1/include/
2019-10-04 15:09:30 +00:00
build linux:
stage: build
2019-09-07 15:17:51 +00:00
script:
2019-10-04 15:09:30 +00:00
- cargo build --release
2019-09-07 15:17:51 +00:00
publish:
stage: publish
script:
2019-10-04 15:09:30 +00:00
- cp godot-tts.gdnlib.release godot-tts.gdnlib
2019-09-07 15:17:51 +00:00
only:
- tags