summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-09-22 09:49:28 -0400
committerGitHub <noreply@github.com>2020-09-22 09:49:28 -0400
commita47d2fe3f8d8e530a154a850398cc49d2dde727d (patch)
treec787ca0e442af02e5c0d45bff67dc204b332195f /.github
parent35a0d8826c36a2df58eff3b7bf87ae782a69c75f (diff)
Use non-interactive backend for debconf in Kinesis CI setup. (#9972)
This prevents us from hanging waiting for non-existent input on debconf prompts.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-and-install.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-and-install.yml b/.github/workflows/build-and-install.yml
index cf8b212e03..f8e749ee71 100644
--- a/.github/workflows/build-and-install.yml
+++ b/.github/workflows/build-and-install.yml
@@ -151,8 +151,8 @@ jobs:
- distro: 'debian:buster'
pre: >-
apt-get update &&
- apt-get install -y build-essential &&
- apt-get install -y libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
+ DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential &&
+ DEBIAN_FRONTEND=noninteractive apt-get install -y libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
build_kinesis: >-
git clone https://github.com/aws/aws-sdk-cpp.git &&
cmake -DCMAKE_INSTALL_PREFIX=/usr
@@ -175,8 +175,8 @@ jobs:
- distro: 'ubuntu:20.04'
pre: >-
apt-get update &&
- apt-get install -y build-essential &&
- apt-get install -y libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
+ DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential &&
+ DEBIAN_FRONTEND=noninteractive apt-get install -y libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
build_kinesis: >-
git clone https://github.com/aws/aws-sdk-cpp.git &&
cmake -DCMAKE_INSTALL_PREFIX=/usr