9f86500913
This commits update hound Dockerfile to use Python 3.11 images instead of older 3.9 one. It's part of the effort to update Python version to 3.10 or later. Change-Id: Idf5076709c55d3327c69c6e8160a8348b6640ca7
30 lines
876 B
YAML
30 lines
876 B
YAML
# Hound jobs
|
|
- job:
|
|
name: system-config-build-image-hound
|
|
description: Build a hound image.
|
|
requires: python-base-3.11-bullseye-container-image
|
|
provides: hound-container-image
|
|
parent: system-config-build-image
|
|
vars: &hound_vars
|
|
docker_images:
|
|
- context: docker/hound
|
|
repository: opendevorg/hound
|
|
files: &hound_files
|
|
- docker/hound/
|
|
|
|
- job:
|
|
name: system-config-upload-image-hound
|
|
description: Build and upload a hound image.
|
|
requires: python-base-3.11-bullseye-container-image
|
|
provides: hound-container-image
|
|
parent: system-config-upload-image
|
|
vars: *hound_vars
|
|
files: *hound_files
|
|
|
|
- job:
|
|
name: system-config-promote-image-hound
|
|
description: Promote a previously published hound image to latest.
|
|
parent: system-config-promote-image
|
|
vars: *hound_vars
|
|
files: *hound_files
|