Skip to content

Commit

Permalink
Add apt upgrade to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Mar 16, 2024
1 parent a7634ce commit 5206e81
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install build-essential ninja-build libssl-dev libcurl4-gnutls-dev cmake git ca-certificates gzip -y --no-install-recommends
- name: Create Build Environment
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install cmake libssl-dev libcurl4-gnutls-dev ninja-build -y --no-install-recommends
- name: Install clang (with clang-tidy)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- name: Prerequisites
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install cmake libssl-dev git libcurl4-gnutls-dev ninja-build -y --no-install-recommends
- name: Install prometheus-cpp
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install cmake libssl-dev libcurl4-gnutls-dev ninja-build -y --no-install-recommends
- name: Install gcc
Expand Down
3 changes: 2 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ Provided that your distribution is sufficiently recent, meta package `build-esse
Otherwise you can still force it:

```bash
sudo apt update && sudo apt install build-essential ninja-build libcurl4-gnutls-dev libssl-dev cmake git ca-certificates gzip
sudo apt update
sudo apt install build-essential ninja-build libcurl4-gnutls-dev libssl-dev cmake git ca-certificates gzip
```

You can refer to the provided [Dockerfile](Dockerfile) for more information.
Expand Down

0 comments on commit 5206e81

Please sign in to comment.