Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 377 Bytes

02_03-simple-3-stage-docker-pipeline.md

File metadata and controls

26 lines (21 loc) · 377 Bytes

Configuring CI/CD pipelines

Continuous Integration

Two-stage pipeline (Docker version)

Try running this pipeline:

job_1:
  stage: build
  script:
  - touch /tmp/build
  - ls -lh /tmp/build
  tags:
  - docker

job_2:
  stage: test
  script:
  - ls -lh /tmp/build
  tags:
  - docker 

Look at the console log for each job.

Why did the second job fail?