mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-11 15:32:42 +02:00
reference: https://docs.github.com/en/actions/tutorials/create-actions/create-a-composite-action preparing coredump limits, installing VTest are now served by dedicated composite action
33 lines
910 B
YAML
33 lines
910 B
YAML
#
|
|
# special purpose CI: test against OpenSSL built in "no-deprecated" mode
|
|
# let us run those builds weekly
|
|
#
|
|
# for example, OpenWRT uses such OpenSSL builds (those builds are smaller)
|
|
#
|
|
#
|
|
# some details might be found at NL: https://www.mail-archive.com/haproxy@formilux.org/msg35759.html
|
|
# GH: https://github.com/haproxy/haproxy/issues/367
|
|
|
|
name: openssl no-deprecated
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 4"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: ./.github/actions/setup-vtest
|
|
- name: Compile HAProxy
|
|
run: |
|
|
make DEFINE="-DOPENSSL_API_COMPAT=0x10100000L -DOPENSSL_NO_DEPRECATED" -j3 CC=gcc ERR=1 TARGET=linux-glibc USE_OPENSSL=1
|
|
- name: Run VTest
|
|
run: |
|
|
make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel
|