mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
add basic .gitlab-ci.yml
This commit is contained in:
parent
78d73c3844
commit
2e8d94e925
7 changed files with 63 additions and 0 deletions
26
.gitlab-ci.yml
Normal file
26
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
# - test
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- "mkdir cmake-build-debug"
|
||||||
|
- "cd cmake-build-debug"
|
||||||
|
- "cmake .."
|
||||||
|
- "cmake --build . --target ui -- -j 8"
|
||||||
|
|
||||||
|
#test:
|
||||||
|
# stage: test
|
||||||
|
# dependencies:
|
||||||
|
# - build
|
||||||
|
# script:
|
||||||
|
# - "mkdir cmake-build-debug"
|
||||||
|
# - "cd cmake-build-debug"
|
||||||
|
# - "cmake .."
|
||||||
|
# - "cmake --build . --target unittest_common -- -j 8"
|
||||||
|
# - "./code/common/unittest_common -r junit -o results_common.xml"
|
||||||
|
# artifacts:
|
||||||
|
# reports:
|
||||||
|
# junit:
|
||||||
|
# - cmake-build-debug/results_common.xml
|
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
6
.idea/code-comments.xml
Normal file
6
.idea/code-comments.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CodeComments" version="1">
|
||||||
|
<comments />
|
||||||
|
</component>
|
||||||
|
</project>
|
7
.idea/misc.xml
Normal file
7
.idea/misc.xml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
|
||||||
|
<component name="JavaScriptSettings">
|
||||||
|
<option name="languageLevel" value="ES6" />
|
||||||
|
</component>
|
||||||
|
</project>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/rpgxEF.iml" filepath="$PROJECT_DIR$/.idea/rpgxEF.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
2
.idea/rpgxEF.iml
Normal file
2
.idea/rpgxEF.iml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module classpath="CMake" type="CPP_MODULE" version="4" />
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
Loading…
Reference in a new issue