///
default: image: 'ruby:2.4' before_script: - echo Hello World variables: DOMAIN: example.com WEBHOOK_URL: https://my-webhook.example.com build ruby 1/2: stage: build inherit: default: [image] variables: [WEBHOOK_URL] script: - echo "ruby1" build ruby 2/2: stage: build script: - echo "ruby2"
Os jobs build ruby 1/2 e build ruby 2/2 são, por padrão, executados em paralelo no GitLab CI, a menos que haja dependências explícitas configuradas entre eles.