-
Notifications
You must be signed in to change notification settings - Fork 952
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forcing a non interaction apt env for CI runs
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,8 @@ jobs: | |
run: apt update | ||
- name: Install Dependencies | ||
run: apt install -y git libssl-dev cmake build-essential clang libcurl4-openssl-dev | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
|
@@ -50,6 +52,8 @@ jobs: | |
run: apt update | ||
- name: Install Dependencies | ||
run: apt install -y git libssl-dev cmake build-essential libcurl4-openssl-dev | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
|
@@ -79,6 +83,8 @@ jobs: | |
run: sudo apt update | ||
- name: Install Dependencies | ||
run: sudo apt install -y git libssl-dev libmbedtls-dev cmake build-essential | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
|