Skip to content

Commit

Permalink
fix aws sdk build failure for dockerized workflow (#167)
Browse files Browse the repository at this point in the history
* install missing libcurl4
  • Loading branch information
RoyZhang2022 authored Nov 17, 2023
1 parent e239ed9 commit 8e70232
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dockerized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v2

- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install libcurl4

- name: Cache AWS SDK libraries
id: cache-dynamic-aws-sdk
uses: actions/cache@v3
Expand Down Expand Up @@ -72,6 +75,9 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v2

- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install libcurl4

- name: Cache AWS SDK libraries
id: cache-dynamic-aws-sdk
uses: actions/cache@v3
Expand Down

0 comments on commit 8e70232

Please sign in to comment.