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
7 changes: 0 additions & 7 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,6 @@ jobs:
shell: bash
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev

- name: Install fmt on macOS
if: ${{ startsWith(matrix.os, 'macos') }}
shell: bash
run: |
brew install fmt
echo "CMAKE_PREFIX_PATH=$(brew --prefix fmt):${CMAKE_PREFIX_PATH:-}" >> "${GITHUB_ENV}"

- name: Verify
run: |
tar_gz=$(echo apache-iceberg-cpp-*.tar.gz)
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/s3_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ jobs:
run: |
echo "CC=${{ matrix.CC }}" >> $GITHUB_ENV
echo "CXX=${{ matrix.CXX }}" >> $GITHUB_ENV
- name: Install fmt on macOS
if: ${{ startsWith(matrix.runs-on, 'macos') }}
shell: bash
run: |
brew install fmt
echo "CMAKE_PREFIX_PATH=$(brew --prefix fmt):${CMAKE_PREFIX_PATH:-}" >> "${GITHUB_ENV}"
- name: Start MinIO
shell: bash
run: bash ci/scripts/start_minio.sh
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/sql_catalog_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ jobs:
run: |
echo "CC=${{ matrix.CC }}" >> $GITHUB_ENV
echo "CXX=${{ matrix.CXX }}" >> $GITHUB_ENV
- name: Install dependencies on macOS
if: ${{ startsWith(matrix.runs-on, 'macos') }}
shell: bash
run: |
brew install fmt
echo "CMAKE_PREFIX_PATH=$(brew --prefix fmt):${CMAKE_PREFIX_PATH:-}" >> "${GITHUB_ENV}"
- name: Install dependencies on Windows
if: ${{ startsWith(matrix.runs-on, 'windows') }}
shell: pwsh
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install fmt
shell: bash
run: |
brew install fmt
echo "CMAKE_PREFIX_PATH=$(brew --prefix fmt):${CMAKE_PREFIX_PATH:-}" >> "${GITHUB_ENV}"
- name: Build Iceberg
shell: bash
run: ci/scripts/build_iceberg.sh $(pwd)
Expand Down
2 changes: 1 addition & 1 deletion cmake_modules/IcebergThirdpartyToolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function(resolve_avro_dependency)
fetchcontent_declare(avro-cpp
${FC_DECLARE_COMMON_OPTIONS}
GIT_REPOSITORY ${AVRO_GIT_REPOSITORY}
GIT_TAG 11fb55500bed9fbe9af53b85112cd13887f0ce80
GIT_TAG 997d50d312613e921598aaed30b082f9bcf9c6ea
SOURCE_SUBDIR
lang/c++
FIND_PACKAGE_ARGS
Expand Down
Loading