Skip to content

Commit acebbf6

Browse files
committed
run pkg-config to get openssl to work
1 parent 27b1f35 commit acebbf6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ jobs:
9797
prefix-key: "v0-rust"
9898
cache-workspace-crates: "true"
9999
- name: Install build dependencies on Linux
100-
run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools openssl libssl-dev pkg-config
100+
run: |
101+
sudo apt-get update --yes && sudo apt-get install --yes musl-tools openssl libssl-dev pkg-config
102+
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 pkg-config --libs --cflags openssl
101103
if: contains(matrix.platform.os, 'ubuntu')
102104
- name: Build binary (*nix)
103105
shell: bash

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "rnk"
33
description = "A command line interface to the Renku platform"
44
homepage = "https://renkulab.io/"
55
edition = "2024"
6+
resolver = "3"
67
license = "Apache-2.0"
78
repository = "https://github.com/SwissDatascienceCenter/renku-cli"
89
keywords = ["renku", "cli"]

0 commit comments

Comments
 (0)