Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 431 Bytes

02_02-simple-3-stage-shell-pipeline.md

File metadata and controls

27 lines (21 loc) · 431 Bytes

Configuring CI/CD pipelines

Continuous Integration

Two-stage pipeline (Shell version)

Try running this pipeline:

build_job:
  stage: build
  tags:
  - shell
  script:
  - touch /tmp/build
  - ls -lh /tmp/build

test_job:
  tags:
  - shell
  script:
  - ls -lh /tmp/build 

Check the console log for each job.

Why is /tmp/build available to the second job?

Look at /tmp/build on your Runner Server.