2020-04-16 20:13:53 +02:00
|
|
|
# Cirrus CI Build Definitions
|
|
|
|
# ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Build the branch if it is integration or ends in -ci/-cic (-cic targets only Cirrus CI)
|
|
|
|
only_if: $CIRRUS_BRANCH == 'integration' || $CIRRUS_BRANCH =~ '.*-ci$' || $CIRRUS_BRANCH =~ '.*-cic$'
|
|
|
|
|
|
|
|
# No auto-cancel on integration
|
|
|
|
auto_cancellation: $CIRRUS_BRANCH != 'integration'
|
|
|
|
|
|
|
|
# FreeBSD 12
|
|
|
|
# ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
freebsd_12_task:
|
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-12-1
|
2021-01-24 23:24:14 +02:00
|
|
|
cpu: 4
|
|
|
|
memory: 4G
|
2020-04-16 20:13:53 +02:00
|
|
|
|
2021-01-24 23:24:14 +02:00
|
|
|
install_script: pkg install -y git postgresql-libpqxx pkgconf libxml2 gmake perl5 p5-YAML rsync
|
2020-04-16 20:13:53 +02:00
|
|
|
|
|
|
|
script:
|
2021-02-26 23:52:59 +02:00
|
|
|
- perl ${CIRRUS_WORKING_DIR}/test/test.pl --no-gen --make-cmd=gmake --vm=none --vm-max=2 --no-coverage --no-valgrind --module=command --test=backup
|
2020-04-16 20:13:53 +02:00
|
|
|
|
|
|
|
debug_script:
|
|
|
|
- ls -lah ${CIRRUS_WORKING_DIR}
|
|
|
|
|
|
|
|
# MacOS Catalina
|
|
|
|
# ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
macos_catalina_task:
|
|
|
|
osx_instance:
|
|
|
|
image: catalina-xcode
|
|
|
|
|
|
|
|
environment:
|
|
|
|
LDFLAGS: -L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/libpq/lib -L/usr/local/opt/libxml2/lib
|
|
|
|
CPPFLAGS: -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/libpq/include -I/usr/local/opt/libxml2/include/libxml2
|
2021-01-24 23:24:14 +02:00
|
|
|
PERL5LIB: /usr/local/opt/perl5/lib/perl5
|
2020-04-16 20:13:53 +02:00
|
|
|
|
2021-01-24 23:24:14 +02:00
|
|
|
install_script:
|
2021-01-27 02:59:14 +02:00
|
|
|
- brew install -q openssl@1.1 libpq libxml2 cpanm
|
|
|
|
- cpanm --local-lib=/usr/local/opt/perl5 install YAML
|
2020-04-16 20:13:53 +02:00
|
|
|
|
|
|
|
script:
|
2021-02-26 23:52:59 +02:00
|
|
|
- ${CIRRUS_WORKING_DIR}/test/test.pl --no-gen --vm=none --vm-max=2 --no-coverage --no-valgrind --module=command --test=backup
|
2020-04-16 20:13:53 +02:00
|
|
|
|
|
|
|
debug_script:
|
|
|
|
- ls -lah ${CIRRUS_WORKING_DIR}
|