Skip to content

Commit d4e1c82

Browse files
committed
remove date library in ci
1 parent 49143c6 commit d4e1c82

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

.github/workflows/cpp-linter.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ jobs:
3434
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3535
with:
3636
fetch-depth: 0
37-
- name: Install Date Library
38-
shell: bash
39-
run: |
40-
sudo apt-get update
41-
sudo apt-get install -y libdate-tz3 libhowardhinnant-date-dev
4237
- name: Run build
4338
run: |
4439
mkdir build && cd build

.github/workflows/test.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,6 @@ jobs:
4848
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4949
with:
5050
fetch-depth: 0
51-
- name: Install Date Library
52-
shell: bash
53-
run: |
54-
sudo apt-get update
55-
sudo apt-get install -y libdate-tz3 libhowardhinnant-date-dev
5651
- name: Build Iceberg
5752
shell: bash
5853
run: ci/scripts/build_iceberg.sh $(pwd)
@@ -70,10 +65,6 @@ jobs:
7065
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7166
with:
7267
fetch-depth: 0
73-
- name: Install Date Library
74-
shell: bash
75-
run: |
76-
brew install howard-hinnant-date
7768
- name: Build Iceberg
7869
shell: bash
7970
run: ci/scripts/build_iceberg.sh $(pwd)
@@ -89,11 +80,10 @@ jobs:
8980
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9081
with:
9182
fetch-depth: 0
92-
- name: Install ZLIB and Date Library
83+
- name: Install ZLIB
9384
shell: cmd
9485
run: |
9586
vcpkg install zlib:x64-windows
96-
vcpkg install date:x64-windows
9787
- name: Build Iceberg
9888
shell: cmd
9989
run: |

src/iceberg/arrow_c_data_internal.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919

2020
#include "iceberg/arrow_c_data_internal.h"
2121

22+
#include <array>
2223
#include <string>
24+
#include <utility>
2325

2426
namespace iceberg::internal {
2527

0 commit comments

Comments
 (0)