-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.23 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
on:
push:
branches: [ "*" ]
tags: [ "*" ]
jobs:
haproxy-dependencies:
uses: "./.github/workflows/haproxy-deps.yml"
with:
DEBIAN_CODENAME: "bookworm"
dist-stable:
needs: [ "haproxy-dependencies" ]
uses: "./.github/workflows/haproxy-dist.yml"
secrets: "inherit" # for Docker image publication
with:
DEBIAN_CODENAME: "bookworm"
HAPROXY_FLAVOUR: "stable"
# https://git.haproxy.org/?p=haproxy-3.1.git;a=commit;h=v3.1.3
HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy-3.1.git"
HAPROXY_VERSION: "3.1-stable"
HAPROXY_GITREF: "v3.1.3"
HAPROXY_DATAPLANEAPI_VERSION: "v3.0"
HAPROXY_OPTIMIZATION: "-O2"
dist-dev:
needs: [ "haproxy-dependencies" ]
uses: "./.github/workflows/haproxy-dist.yml"
secrets: "inherit" # for Docker image publication
with:
DEBIAN_CODENAME: "bookworm"
HAPROXY_FLAVOUR: "dev"
# https://git.haproxy.org/?p=haproxy.git;a=commit;h=8235a24782e528b9bf8ca9dd69c0a147556dfcb5
HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy.git"
HAPROXY_VERSION: "3.2-dev"
HAPROXY_GITREF: "8235a24782e528b9bf8ca9dd69c0a147556dfcb5"
HAPROXY_DATAPLANEAPI_VERSION: "master"
HAPROXY_OPTIMIZATION: "-Og"