Return of honkbot, in Rust. Hopefully it won't die all the time.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: use OPENSSL_DIR/OPENSSL_LIB_DIR instead of pkg-config

goose.art c6d78b6a 26836d39

+4 -1
+4 -1
.tangled/workflows/build.yaml
··· 24 24 steps: 25 25 - name: "build rust binary" 26 26 command: | 27 - export PKG_CONFIG_PATH=$(find /nix/store -path '*/lib/pkgconfig' -maxdepth 4 2>/dev/null | tr '\n' ':') 27 + export OPENSSL_DIR=$(dirname $(dirname $(find /nix/store -name 'openssl.pc' 2>/dev/null | head -1))) 28 + export OPENSSL_LIB_DIR=$(find /nix/store -path '*/lib/libssl.so' 2>/dev/null | head -1 | xargs dirname) 29 + echo "OPENSSL_DIR=$OPENSSL_DIR" 30 + echo "OPENSSL_LIB_DIR=$OPENSSL_LIB_DIR" 28 31 cargo build --release 29 32 30 33 - name: "build and push container image"