Skip to content

Commit 2bc706e

Browse files
committed
Add noninteractive
1 parent f298ad2 commit 2bc706e

33 files changed

+45
-8
lines changed

.github/workflows/bind9.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ jobs:
9494
9595
- name: Build and test bind9 with wolfProvider
9696
working-directory: bind9
97+
shell: bash
9798
run: |
9899
# Set up the environment for wolfProvider
99100
source $GITHUB_WORKSPACE/scripts/env-setup

.github/workflows/cjose.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ jobs:
6565

6666
- name: Install cjose dependencies
6767
run: |
68-
sudo apt-get install -y libjansson-dev check
68+
export DEBIAN_FRONTEND=noninteractive
69+
sudo apt-get update
70+
sudo apt-get install -y build-essential autoconf automake libtool \
71+
pkg-config gcc make libjansson-dev check
6972
7073
- name: Download cjose
7174
uses: actions/checkout@v4
@@ -86,6 +89,7 @@ jobs:
8689
8790
- name: Run cjose tests
8891
working-directory: cjose
92+
shell: bash
8993
run: |
9094
# Set up the environment for wolfProvider
9195
source $GITHUB_WORKSPACE/scripts/env-setup

.github/workflows/curl.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ jobs:
6868

6969
- name: Install dependencies
7070
run: |
71+
export DEBIAN_FRONTEND=noninteractive
7172
sudo apt-get update
72-
sudo apt-get install nghttp2 libpsl5 libpsl-dev python3-impacket
73+
sudo apt-get install -y nghttp2 libpsl5 libpsl-dev python3-impacket
7374
7475
- name: Build curl
7576
uses: wolfSSL/actions-build-autotools-project@v1

.github/workflows/grpc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
7878
- name: Install prerequisites
7979
run: |
80+
export DEBIAN_FRONTEND=noninteractive
8081
sudo apt-get update
8182
sudo apt-get install -y build-essential autoconf libtool pkg-config clang libc++-dev
8283

.github/workflows/iperf.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ jobs:
6565

6666
- name: Install dependencies
6767
run: |
68+
export DEBIAN_FRONTEND=noninteractive
6869
sudo apt-get update
69-
sudo apt-get install build-essential autoconf libtool pkg-config clang libc++-dev
70+
sudo apt-get install -y build-essential autoconf libtool pkg-config clang libc++-dev
7071
7172
- name: Checkout iperf
7273
uses: actions/checkout@v4

.github/workflows/ipmitool.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
run: |
6868
export DEBIAN_FRONTEND=noninteractive
6969
sudo apt-get update
70-
sudo apt-get install -y libreadline-dev
70+
sudo apt-get install -y build-essential autoconf automake libtool \
71+
pkg-config libreadline-dev
7172
7273
- name: Build ipmitool with wolfProvider
7374
uses: wolfSSL/actions-build-autotools-project@v1
@@ -79,6 +80,7 @@ jobs:
7980

8081
- name: Confirm built with OpenSSL and test with wolfProvider
8182
working-directory: ipmitool
83+
shell: bash
8284
run: |
8385
# Set up the environment for wolfProvider
8486
source $GITHUB_WORKSPACE/scripts/env-setup

.github/workflows/krb5.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464

6565
- name: Install KRB5 dependencies
6666
run: |
67+
export DEBIAN_FRONTEND=noninteractive
6768
sudo apt-get update
6869
sudo apt-get install -y \
6970
build-essential autoconf automake libtool \
@@ -92,6 +93,7 @@ jobs:
9293
9394
- name: Build and test KRB5 with wolfProvider
9495
working-directory: krb5
96+
shell: bash
9597
run: |
9698
# Build KRB5
9799
cd src

.github/workflows/libcryptsetup.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767

6868
- name: Install dependencies
6969
run: |
70+
export DEBIAN_FRONTEND=noninteractive
7071
sudo apt-get update
7172
sudo apt-get install -y \
7273
build-essential autoconf asciidoctor gettext autopoint libtool \

.github/workflows/libeac3.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666

6767
- name: Install libeac3 dependencies
6868
run: |
69+
export DEBIAN_FRONTEND=noninteractive
6970
sudo apt-get update
7071
sudo apt-get install -y autoconf automake libtool libc6 help2man gengetopt pkg-config m4 libeac3
7172

.github/workflows/libfido2.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262

6363
- name: Install test dependencies
6464
run: |
65+
export DEBIAN_FRONTEND=noninteractive
6566
sudo apt-get update
6667
sudo apt-get install -y build-essential cmake pkg-config libudev-dev \
6768
zlib1g-dev libcbor-dev libpcsclite-dev pcscd

0 commit comments

Comments
 (0)