We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdde49b commit 79b2c29Copy full SHA for 79b2c29
.github/workflows/build.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Prepare
16
run: |
17
sudo apt-get update
18
- sudo apt-get install -y libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev
+ sudo apt-get install -y libssl-dev libcurl4-openssl-dev uncrustify
19
- name: Prepare libwebsockets
20
21
git clone https://libwebsockets.org/repo/libwebsockets --depth 1 --branch v4.2-stable
@@ -25,6 +25,15 @@ jobs:
25
cmake ..
26
make
27
sudo make install
28
+ - name: Prepare libyaml
29
+ run: |
30
+ git clone https://github.com/yaml/libyaml
31
+ cd libyaml
32
+ mkdir build
33
+ cd build
34
+ cmake ..
35
+ make
36
+ sudo make install
37
- name: Build client library
38
39
cd kubernetes
0 commit comments