github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/gitlab/yaml/testdata/job_keywords/dependencies/example-1.yaml (about)

     1  # https://docs.gitlab.com/ee/ci/yaml/#dependencies
     2  
     3  build osx:
     4    stage: build
     5    script: make build:osx
     6    artifacts:
     7      paths:
     8        - binaries/
     9  
    10  build linux:
    11    stage: build
    12    script: make build:linux
    13    artifacts:
    14      paths:
    15        - binaries/
    16  
    17  test osx:
    18    stage: test
    19    script: make test:osx
    20    dependencies:
    21      - build osx
    22  
    23  test linux:
    24    stage: test
    25    script: make test:linux
    26    dependencies:
    27      - build linux
    28  
    29  deploy:
    30    stage: deploy
    31    script: make deploy
    32    environment: production