mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
20 lines
341 B
YAML
20 lines
341 B
YAML
stages:
|
|
- build
|
|
- test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- "mkdir cmake-build-debug"
|
|
- "cd cmake-build-debug"
|
|
- "cmake .."
|
|
- "cmake --build . --target common"
|
|
- "cmake --build . --target unittest_common"
|
|
|
|
test:
|
|
stage: test
|
|
dependencies:
|
|
- build
|
|
script:
|
|
- "cd cmake-build_debug"
|
|
- "./unittest_common"
|