Fix: Fix integration tests with the new sasl-build script

This commit is contained in:
Bojan Čekrlić 2023-10-27 12:39:06 +02:00
parent bb5a9f3e24
commit b3c6fafa4d
3 changed files with 5 additions and 13 deletions

View file

@ -57,7 +57,6 @@ jobs:
needs:
- Unit_Tests
- Integration_Tests
- Helm_chart_Tests
steps:
# Checkout
- name: Checkout
@ -111,7 +110,6 @@ jobs:
needs:
- Unit_Tests
- Integration_Tests
- Helm_chart_Tests
steps:
# Checkout
- name: Checkout
@ -156,7 +154,6 @@ jobs:
needs:
- Unit_Tests
- Integration_Tests
- Helm_chart_Tests
steps:
# Checkout
- name: Checkout

View file

@ -15,7 +15,7 @@ do_alpine() {
do_ubuntu() {
RELEASE_SPECIFIC_PACKAGES="netcat"
if [ "${ID}" -eq "debian" ]; then
if [ "${ID}" = "debian" ]; then
RELEASE_SPECIFIC_PACKAGES="netcat-openbsd"
fi
export DEBIAN_FRONTEND=noninteractive

View file

@ -2,21 +2,16 @@
set -e
build_pandoc() {
CAN_INSTALL=1
if [ -f /etc/alpine-release ]; then
if ! apk add --upgrade pandoc; then
CAN_INSTALL=0
if apk add --upgrade pandoc; then
return
fi
else
if ! apt-get install -y --no-install-recommends; then
CAN_INSTALL=0
if apt-get install -y --no-install-recommends pandoc; then
return
fi
fi
if [ "${CAN_INSTALL}" -eq "1" ; then
return
fi
if [ -f /etc/alpine-release ]; then
apk add --upgrade cabal curl llvm
else