Allow building specific vtest commit, and rollback to 35b5cae #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ "*" ] | |
tags: [ "*" ] | |
jobs: | |
haproxy-dependencies: | |
uses: "./.github/workflows/haproxy-deps.yml" | |
with: | |
DEBIAN_CODENAME: "bookworm" | |
CLANG_VERSION: 17 | |
dist-stable: | |
needs: [ "haproxy-dependencies" ] | |
uses: "./.github/workflows/haproxy-dist.yml" | |
secrets: "inherit" # for Docker image publication | |
with: | |
DEBIAN_CODENAME: "bookworm" | |
CLANG_VERSION: 17 | |
HAPROXY_FLAVOUR: "stable" | |
# https://git.haproxy.org/?p=haproxy-3.0.git;a=commit;h=v3.0.0 | |
HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy-3.0.git" | |
HAPROXY_VERSION: "3.0-stable" | |
HAPROXY_GITREF: "v3.0.0" | |
HAPROXY_DATAPLANEAPI_VERSION: "v2.9" | |
dist-dev: | |
needs: [ "haproxy-dependencies" ] | |
uses: "./.github/workflows/haproxy-dist.yml" | |
secrets: "inherit" # for Docker image publication | |
with: | |
DEBIAN_CODENAME: "bookworm" | |
CLANG_VERSION: 17 | |
HAPROXY_FLAVOUR: "dev" | |
# https://git.haproxy.org/?p=haproxy.git;a=commit;h=711338e1ceb061db0a5c832acdea8edbeafa712f | |
HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy.git" | |
HAPROXY_VERSION: "3.1-dev" | |
HAPROXY_GITREF: "711338e1ceb061db0a5c832acdea8edbeafa712f" | |
HAPROXY_DATAPLANEAPI_VERSION: "master" |