Skip to content
Snippets Groups Projects
.gitlab-ci.yml 2.09 KiB
---
include:
  - project: shore/ci-stuff
    file: templates/pre-commit.yml
  - project: shore/ci-stuff
    file: templates/notify.yml
  - project: shore/ci-stuff
    file: templates/containerfiles.yml

# cgit image:

build-cgit:
  extends: .container-build
  variables:
    CONTEXT: cgit

push-cgit:
  extends: .container-push
  variables:
    CONTEXT: cgit
    IMAGE: cgit
  needs:
    - job: build-cgit
      artifacts: true

# httpd latest image:

build-httpd:
  extends: .container-build
  variables:
    CONTEXT: httpd/buster

push-httpd:
  extends: .container-push
  variables:
    CONTEXT: httpd/buster
    IMAGE: httpd
  needs:
    - job: build-httpd
      artifacts: true

# httpd buster image:

push-httpd-buster:
  extends: .container-push
  variables:
    CONTEXT: httpd/buster
    IMAGE: httpd
    TAG: buster
  needs:
    - job: build-httpd
      artifacts: true

# httpd bullseye image:

build-httpd-bullseye:
  extends: .container-build
  variables:
    CONTEXT: httpd/bullseye

push-httpd-bullseye:
  extends: .container-push
  variables:
    CONTEXT: httpd/bullseye
    IMAGE: httpd
    TAG: bullseye
  needs:
    - job: build-httpd-bullseye
      artifacts: true