Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
- name: Install Rocky Deps ARM64
if: matrix.container_image == 'rockylinux:9' && contains(matrix.os, 'ubuntu-22.04-arm')
run: |
dnf install -y --allowerasing gcc make curl pkgconf openssl-devel wget perl pkg-config
dnf install -y --allowerasing gcc make curl pkgconf openssl-devel wget perl pkg-config curl-devel

# Install Rust via rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
- name: Install Rocky Deps AMD64
if: matrix.container_image == 'rockylinux:9' && !contains(matrix.os, 'ubuntu-22.04-arm')
run: |
dnf install -y --allowerasing gcc make curl pkgconf openssl-devel wget perl pkg-config
dnf install -y --allowerasing gcc make curl pkgconf openssl-devel wget perl pkg-config curl-devel

# Install Rust via rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
if: contains(matrix.os, 'ubuntu') && matrix.container_image == null
run: |
sudo apt-get update -y
sudo apt-get install -y build-essential
sudo apt-get install -y build-essential libcurl4-openssl-dev pkg-config

- name: Install protoc (Ubuntu)
if: contains(matrix.os, 'ubuntu') && matrix.container_image == null
Expand Down
29 changes: 27 additions & 2 deletions .github/workflows/lint-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
version: "33.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev pkg-config

- name: Set up Rust
run: rustup override set stable && rustup update

Expand Down Expand Up @@ -93,6 +98,11 @@ jobs:
version: "33.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install build dependencies (rdkafka_sys 4.10)
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev pkg-config

- name: Set up Rust
run: rustup override set stable && rustup update

Expand Down Expand Up @@ -148,6 +158,16 @@ jobs:
version: "33.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install build dependencies (Ubuntu)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev pkg-config

- name: Install build dependencies (macOS)
if: runner.os == 'macOS'
run: brew install curl openssl pkg-config

- name: cache rust
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -245,6 +265,11 @@ jobs:
version: "33.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install build dependencies (rdkafka_sys 4.10)
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev pkg-config

- name: cache rust
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -318,7 +343,7 @@ jobs:
before-script-linux: |
# Install required packages
if command -v yum &> /dev/null; then
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic curl-devel

# If we're running on i686 we need to symlink libatomic
# in order to build openssl with -latomic flag.
Expand All @@ -327,7 +352,7 @@ jobs:
fi
else
# If we're running on debian-based system.
apt update -y && apt-get install -y libssl-dev openssl pkg-config
apt update -y && apt-get install -y libssl-dev openssl pkg-config libcurl4-openssl-dev
fi


Expand Down
Loading
Loading