Commit d1397ec5 authored by Federico Falconieri's avatar Federico Falconieri
Browse files

fix!: renames docker to container

docker != container

BREAKING CHANGE: this will break direct inclusions of container jobs, typically kaniko
parent 3cf364b7
Loading
Loading
Loading
Loading
+15 −8
Original line number Diff line number Diff line
@@ -45,11 +45,11 @@ jobs:c:
      - local: tests/jobs/c.yml
    strategy: depend

jobs:docker:
jobs:container:
  stage: test
  trigger:
    include:
      - local: tests/jobs/docker.yml
      - local: tests/jobs/container.yml
    strategy: depend

jobs:docs:
@@ -74,23 +74,30 @@ pipelines:c:
      - local: tests/pipelines/c.yml
    strategy: depend

pipelines:docker:
pipelines:python:
  stage: test
  trigger:
    include:
      - local: tests/pipelines/docker.yml
      - local: tests/pipelines/python.yml
    strategy: depend

pipelines:python:
pipelines:container:polirepo:
  stage: test
  trigger:
    include:
      - local: tests/pipelines/python.yml
      - local: tests/pipelines/container/polirepo.yml
    strategy: depend

pipelines:container:monorepo:
  stage: test
  trigger:
    include:
      - local: tests/pipelines/container/monorepo.yml
    strategy: depend

pipelines:python&docker:
pipelines:container:python:
  stage: test
  trigger:
    include:
      - local: tests/pipelines/python-docker.yml
      - local: tests/pipelines/container/python.yml
    strategy: depend
+0 −0

File moved.

+0 −0

File moved.

+2 −2
Original line number Diff line number Diff line
---
include:
  - local: "docker/kaniko.yml"
  - local: "docker/grype.yml"
  - local: "container/kaniko.yml"
  - local: "container/grype.yml"

# skips default polirepo job inherited
kaniko:
Loading