Skip to content

Commit 1437db2

Browse files
committed
NOT HE HE 2
1 parent df5f420 commit 1437db2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,21 @@ jobs:
2727
- name: Update apt and install dependencies
2828
run: |
2929
sudo apt-get update
30-
sudo apt-get install -y pkg-config libssl-dev protobuf-compiler python3-pip
30+
sudo apt-get install -y python3-pip
3131
pip3 install ziglang
3232
cargo install --locked cargo-zigbuild
3333
34+
- name: Install OpenSSL
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y pkg-config libssl-dev
38+
39+
- name: Set OpenSSL environment for zigbuild
40+
run: |
41+
export OPENSSL_DIR=/usr
42+
export OPENSSL_INCLUDE_DIR=/usr/include
43+
export OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu
44+
3445
- name: Add target
3546
run: rustup target add x86_64-unknown-linux-gnu
3647

0 commit comments

Comments
 (0)