mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-08 19:35:57 +00:00
34 lines
627 B
YAML
34 lines
627 B
YAML
stages:
|
|
- build
|
|
- publish
|
|
|
|
build linux:
|
|
stage: build
|
|
image: rust
|
|
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/
|
|
- cargo build --release
|
|
- mv target linux
|
|
artifacts:
|
|
paths:
|
|
- linux
|
|
expire_in: 1 day
|
|
|
|
publish:
|
|
stage: publish
|
|
script:
|
|
- cp godot-tts.gdnlib.release godot-tts.gdnlib
|
|
- mkdir -p target/release
|
|
- cp linux/release/*.so target/release
|
|
artifacts:
|
|
name: $CI_JOB_NAME
|
|
paths:
|
|
- target
|
|
- TTS.gd
|
|
- godot-tts.gdnlib
|
|
- godot-tts.gdns
|
|
- LICENSE
|
|
expire_in: 1 day
|