add basic .gitlab-ci.yml

This commit is contained in:
Walter Julius Hennecke 2020-06-13 23:01:57 +02:00
parent 78d73c3844
commit 2e8d94e925
7 changed files with 63 additions and 0 deletions

26
.gitlab-ci.yml Normal file
View 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
View 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
View 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
View 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
View 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
View 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
View 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>