pidgin/builders

Update all of the builder images

13 months ago, Gary Kramlich
4f5742e4a9ea
Update all of the builder images

* added fedora 38 image
* added ubuntu lunar image
* removed cyrus-sasl and gsasl from everything
* removed fedora 36 and fedora 37 images
* removed appimage image as we're not really focused on that right now
* removed ubuntu kinetic image
environment:
- REPO=pidgin/builders
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- REGISTRY=docker.io
tasks:
import:
type: docker/import
files: .:.
build:
type: docker/build
dockerfile: Dockerfile.${TARGET}
tag: ${REGISTRY}/${REPO}:${TARGET}
files: .:.
labels:
- COMMIT=${HG_COMMIT}
publish:
type: docker/push
image: ${REGISTRY}/${REPO}:${TARGET}
login:
type: docker/login
username: ${REGISTRY_USERNAME}
password: ${REGISTRY_PASSWORD}
server: ${REGISTRY}
logout:
type: docker/logout
server: ${REGISTRY}
clean:
type: docker/remove
quiet: true
images: ${REGISTRY}/${REPO}:${TARGET}
plans:
build:
stages:
- tasks: [import, build]
clang:
environment: TARGET=clang
stages:
- tasks: [import, build]
clean:
stages:
- tasks: clean
debian-bookworm-amd64:
environment: TARGET=debian-bookworm-amd64
stages:
- tasks: [import, build]
fedora-38-amd64:
environment: TARGET=fedora-38-amd64
stages:
- tasks: [import, build]
publish:
environment: [REGISTRY_USERNAME, REGISTRY_PASSWORD]
stages:
- tasks: [login, publish]
- tasks: [logout]
run: always
scanbuild:
environment: TARGET=scanbuild
stages:
- tasks: [import, build]
ubuntu-lunar-amd64:
environment: TARGET=ubuntu-lunar-amd64
stages:
- tasks: [import, build]
meta-plans:
conveyci:
concurrent: true
plans:
- clang
- debian-bookworm-amd64
- fedora-38-amd64
- scanbuild
- ubuntu-lunar-amd64