mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-19 07:21:12 +00:00
add basic ci config
This commit is contained in:
parent
12229678b6
commit
c623746ce2
1 changed files with 12 additions and 0 deletions
12
.gitlab-ci.yml
Normal file
12
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
build:
|
||||
script:
|
||||
- "mkdir cmake-build-debug"
|
||||
- "cd cmake-build-debug"
|
||||
- "cmake .."
|
||||
- "cmake --build . --target common"
|
||||
- "cmake --build . --target unittest_common"
|
||||
|
||||
test:
|
||||
script:
|
||||
- "cd cmake-build_debug"
|
||||
- "./unittest_common"
|
Loading…
Reference in a new issue