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 908b524 commit d61c6caCopy full SHA for d61c6ca
1 file changed
.github/workflows/rust.yml
@@ -40,8 +40,8 @@ jobs:
40
steps:
41
- uses: actions/checkout@v4
42
- uses: dtolnay/rust-toolchain@stable
43
- - name: Install protobuf compiler
44
- run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
+ - name: Install build dependencies (protobuf, OpenSSL)
+ run: sudo apt-get update && sudo apt-get install -y protobuf-compiler pkg-config libssl-dev
45
- name: Cache cargo
46
uses: Swatinem/rust-cache@v2
47
with: { cache-on-failure: true }
@@ -70,6 +70,9 @@ jobs:
70
build:
71
runs-on: ubuntu-latest
72
needs: matrix
73
+ env:
74
+ OPENSSL_STATIC: "1"
75
+ OPENSSL_NO_PKG_CONFIG: "1"
76
strategy:
77
fail-fast: false
78
matrix:
0 commit comments