mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-25 12:15:56 +00:00
Add CI configuration.
This commit is contained in:
parent
cb39eda4c6
commit
c91ed6d005
22
.gitlab-ci.yml
Normal file
22
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
image: rust
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
- 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/
|
||||||
|
|
||||||
|
test linux:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- cargo test
|
||||||
|
|
||||||
|
publish:
|
||||||
|
stage: publish
|
||||||
|
script:
|
||||||
|
- echo Publishing.
|
||||||
|
only:
|
||||||
|
- tags
|
Loading…
Reference in New Issue
Block a user