Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
C
compass-github-pull
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
steinbac
compass-github-pull
Commits
449b3276
Commit
449b3276
authored
Oct 02, 2018
by
Peter Steinbach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed syntax error on windows
parent
e752eba8
Pipeline
#632
failed with stages
in 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
.gitlab-ci.yml
.gitlab-ci.yml
+14
-7
No files found.
.gitlab-ci.yml
View file @
449b3276
...
...
@@ -5,7 +5,8 @@ centos_build:
script
:
-
mkdir build
-
cd build
-
cmake .. && cat tests/build_machine.hpp
-
cmake ..
-
cat tests/build_machine.hpp
-
make VERBOSE=1
centos_test
:
...
...
@@ -15,7 +16,8 @@ centos_test:
script
:
-
mkdir build
-
cd build
-
cmake .. && cat tests/build_machine.hpp
-
cmake ..
-
cat tests/build_machine.hpp
-
make VERBOSE=1
-
ctest -V
...
...
@@ -26,7 +28,8 @@ mac_build:
script
:
-
mkdir build
-
cd build
-
cmake .. && cat tests/build_machine.hpp
-
cmake ..
-
cat tests/build_machine.hpp
-
make VERBOSE=1
mac_test
:
...
...
@@ -36,7 +39,8 @@ mac_test:
script
:
-
mkdir build
-
cd build
-
cmake .. && cat tests/build_machine.hpp
-
cmake ..
-
cat tests/build_machine.hpp
-
make VERBOSE=1
-
ctest -V
...
...
@@ -47,7 +51,8 @@ ubuntu_build:
script
:
-
mkdir build
-
cd build
-
cmake .. && cat tests/build_machine.hpp
-
cmake ..
-
cat tests/build_machine.hpp
-
make VERBOSE=1
win_build
:
...
...
@@ -57,7 +62,8 @@ win_build:
script
:
-
mkdir build
-
cd build
-
cmake .. && type tests/build_machine.hpp
-
cmake ..
-
type tests/build_machine.hpp
-
cmake --build .
win_test
:
...
...
@@ -67,7 +73,8 @@ win_test:
script
:
-
mkdir build
-
cd build
-
cmake .. && type tests/build_machine.hpp
-
cmake ..
-
type tests/build_machine.hpp
-
cmake --build . --config Release
-
ctest -V -C Release
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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