This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 883a43ff chore: fix rc.yml to download dependencies (#526)
883a43ff is described below
commit 883a43ff0c16d46f634f21f3917e1d24f356669a
Author: Gang Wu <[email protected]>
AuthorDate: Thu Jan 22 16:24:27 2026 +0800
chore: fix rc.yml to download dependencies (#526)
---
.github/workflows/rc.yml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml
index 5398433f..cf8b3eec 100644
--- a/.github/workflows/rc.yml
+++ b/.github/workflows/rc.yml
@@ -89,12 +89,17 @@ jobs:
with:
name: archive
- - name: Set Ubuntu Compilers
- if: ${{ startsWith(matrix.runs-on, 'ubuntu') }}
+ - name: Set compilers on Ubuntu
+ if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
echo "CC=${{ matrix.CC }}" >> $GITHUB_ENV
echo "CXX=${{ matrix.CXX }}" >> $GITHUB_ENV
+ - name: Install dependencies on Ubuntu
+ if: ${{ startsWith(matrix.os, 'ubuntu') }}
+ shell: bash
+ run: sudo apt-get update && sudo apt-get install -y
libcurl4-openssl-dev
+
- name: Verify
run: |
tar_gz=$(echo apache-iceberg-cpp-*.tar.gz)