Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
curiositycasualty committed May 30, 2024
1 parent 33c1627 commit d7d8e93
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ jobs:

- name: Install packages
if: steps.cache-deps.outputs.cache-hit != 'true'
run: sudo apt update && sudo apt install libyaml-dev valgrind libprotobuf-dev
run: |
sudo apt update
for pkg in libyaml-dev valgrind libprotobuf-dev; do
sudo apt install -y $pkg
done
- name: Build Kong
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand Down

0 comments on commit d7d8e93

Please sign in to comment.