Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DSJC Course
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RC Data Science
Communications
DSJC Course
Merge requests
!5
Testing gitlab-ci
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Testing gitlab-ci
wwarr-main-patch-62337
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
William E Warriner
requested to merge
wwarr-main-patch-62337
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Testing gitlab-ci with hello-world equivalent.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
009fefb5
1 commit,
2 years ago
1 file
+
22
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
22
−
0
Options
build-job
:
stage
:
build
script
:
-
echo "Hello, $GITLAB_USER_LOGIN"
test-job1
:
stage
:
test
script
:
-
echo "This job tests something"
test-job2
:
stage
:
test
script
:
-
echo "This job tests something, but takes more time than test-job1"
-
echo "Sleeps for 20 seconds"
-
sleep
20
deploy-prod
:
stage
:
deploy
script
:
-
echo "This job deploys something from $CI_COMMIT_BRANCH branch."
environment
:
production
Loading