Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Cameo
cameo
Commits
33240c5e
Commit
33240c5e
authored
Jul 02, 2020
by
Shervin Nourbakhsh
Browse files
adding CI cmake
parent
50dd2e83
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
33240c5e
image
:
gcc
variables
:
GIT_SUBMODULE_STRATEGY
:
normal
stages
:
-
build
-
doc
before_script
:
-
git status
-
mkdir -p build/
-
cd build/
compile_cpp_api
:
stage
:
build
script
:
-
cmake ..
-
cmake --build .
pages
:
stage
:
doc
script
:
-
cmake ..
-
cmake --build . --target doc
-
mv doc/html/ ../public/
artifacts
:
paths
:
-
public
only
:
-
master
-
cmake
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment