Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • hello-world-template hello-world-template
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 9
    • Issues 9
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • ci-cd-discovery
  • templates
  • hello-world-templatehello-world-template
  • Issues
  • #1

Closed
Open
Created Nov 30, 2020 by Philippe Charrière@pcharriereOwner0 of 9 tasks completed0/9 tasks

01-say-hello

🖐️ This exercise is performed by the speakers and replayed by the learners, raise the hand if you have any question or if you need help

TODO

  • create a merge request from this issue
  • open the WebIDE
  • create a .gitlab-ci.yml file
  • add one stage: greetings to the .gitlab-ci.yml file
  • add 2 jobs (belonging to greetings) to the .gitlab-ci.yml file
    • hello, and this job will display "hello world!"
    • hey, and this job will display "hey what's up?"
  • commit your changes, it will trigger the pipeline
  • observe the pipeline
  • observe the output of the pipeline
  • merge on master (the pipe will be triggered again)
🖐️🖐️🖐️ Information
We're going to use an Axians Docker runner tagged docker; so every job has to contain this: tags: [docker]

Help

This pipeline will display "I'm walking"

stages:
  - first_steps

walking:
  stage: first_steps
  tags: [docker]
  script:
    - echo "I'm walking"
Edited Dec 01, 2020 by Philippe Charrière
Assignee
Assign to
Time tracking