Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zbysek Machaczek
lab6
Commits
b7b358ac
Commit
b7b358ac
authored
Oct 21, 2020
by
Zbysek Machaczek
Browse files
yml file
parent
f4676ddd
Pipeline
#13737
failed
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
b7b358ac
image
:
ubuntu:rolling
stages
:
-
build
- test
job1
:
stage
:
build
artifacts
:
paths
:
-
build/
before_script
:
-
'
apt-get
-y
install
g++'
-
'
apt-get
-y
install
CMake'
script
:
-
'
cmake
-S.
-Bbuild'
-
'
cmake
--build
build'
job2
:
stage
:
test
dependencies
:
-job1
script
:
-
'
./build/code1
YOUR_COMMAND
&&
echo
"Job
OK"
||
{
echo
"Job
ERROR:
$?";
exit
1;
}'
-
'
./build/code2
YOUR_COMMAND
&&
echo
"Job
OK"
||
{
echo
"Job
ERROR:
$?";
exit
1;
}'
Write
Preview
Supports
Markdown
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