Skip to content

Commit

Permalink
chore(CI): adapt CI to build k8smeta plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Terzolo <[email protected]>
  • Loading branch information
Andreagit97 committed Dec 11, 2023
1 parent 591116e commit 982a5b3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/reusable_build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,16 @@ jobs:
- name: Install deps
run: |
apt update
apt install -y --no-install-recommends git awscli
apt install -y --no-install-recommends git awscli make build-essential autoconf libtool pkg-config
- name: Install updated cmake version ⛓️
run: |
curl -L -o /tmp/cmake.tar.gz https://github.com/Kitware/CMake/releases/download/v3.22.5/cmake-3.22.5-linux-$(uname -m).tar.gz
gzip -d /tmp/cmake.tar.gz
tar -xpf /tmp/cmake.tar --directory=/tmp
cp -R /tmp/cmake-3.22.5-linux-$(uname -m)/* /usr
rm -rf /tmp/cmake-3.22.5-linux-$(uname -m)
- name: Checkout Plugins ⤵️
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 982a5b3

Please sign in to comment.