Skip to content

Commit a4b0902

Browse files
committed
Remove windows tz workarounds
1 parent 58fac16 commit a4b0902

38 files changed

+10
-432
lines changed

.github/workflows/cpp.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,9 +366,6 @@ jobs:
366366
run: |
367367
export CMAKE_BUILD_PARALLEL_LEVEL=$NUMBER_OF_PROCESSORS
368368
ci/scripts/cpp_build.sh "$(pwd)" "$(pwd)/build"
369-
- name: Download Timezone Database
370-
shell: bash
371-
run: ci/scripts/download_tz_database.sh
372369
- name: Download MinIO
373370
shell: msys2 {0}
374371
run: |

.github/workflows/cpp_extra.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,6 @@ jobs:
365365
with:
366366
fetch-depth: 0
367367
submodules: recursive
368-
- name: Download Timezone Database
369-
shell: bash
370-
run: ci/scripts/download_tz_database.sh
371368
- name: Install cmake
372369
shell: bash
373370
run: |

.github/workflows/cpp_windows.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@ jobs:
8181
with:
8282
fetch-depth: 0
8383
submodules: recursive
84-
- name: Download Timezone Database
85-
shell: bash
86-
run: ci/scripts/download_tz_database.sh
8784
- name: Install msys2 (for tzdata for ORC tests)
8885
uses: msys2/setup-msys2@v2
8986
id: setup-msys2

.github/workflows/matlab.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,6 @@ jobs:
147147
uses: matlab-actions/setup-matlab@v2
148148
with:
149149
release: R2025b
150-
- name: Download Timezone Database
151-
shell: bash
152-
run: ci/scripts/download_tz_database.sh
153150
- name: Install ccache
154151
shell: bash
155152
run: ci/scripts/install_ccache.sh 4.6.3 /usr

.github/workflows/verify_rc.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,6 @@ jobs:
228228
run: |
229229
choco install --no-progress --yes boost-msvc-14.1
230230
choco install --no-progress --yes wget
231-
- name: Download Timezone Database
232-
shell: bash
233-
run: ci/scripts/download_tz_database.sh
234231
- name: Run verification
235232
env:
236233
GH_TOKEN: ${{ github.token }}

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ repos:
302302
?^ci/scripts/conan_build\.sh$|
303303
?^ci/scripts/conan_setup\.sh$|
304304
?^ci/scripts/cpp_test\.sh$|
305-
?^ci/scripts/download_tz_database\.sh$|
306305
?^ci/scripts/install_azurite\.sh$|
307306
?^ci/scripts/install_ccache\.sh$|
308307
?^ci/scripts/install_ceph\.sh$|

c_glib/test/test-assume-timezone-options.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def test_nonexistent_property
4545
end
4646

4747
def test_assume_timezone_function
48-
omit("Missing tzdata on Windows") if Gem.win_platform?
4948
args = [
5049
Arrow::ArrayDatum.new(build_timestamp_array(:milli, [1504953190000])),
5150
]

c_glib/test/test-day-of-week-options.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def test_week_start_property
3939
end
4040

4141
def test_day_of_week_function_with_count_from_zero_false
42-
omit("Missing tzdata on Windows") if Gem.win_platform?
4342
args = [
4443
# 2017-09-09T10:33:10Z (Saturday)
4544
Arrow::ArrayDatum.new(build_timestamp_array(:milli, [1504953190000])),
@@ -51,7 +50,6 @@ def test_day_of_week_function_with_count_from_zero_false
5150
end
5251

5352
def test_day_of_week_function_with_week_start
54-
omit("Missing tzdata on Windows") if Gem.win_platform?
5553
args = [
5654
# 2017-09-09T10:33:10Z (Saturday)
5755
Arrow::ArrayDatum.new(build_timestamp_array(:milli, [1504953190000])),

c_glib/test/test-strftime-options.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def test_locale_property
3535
end
3636

3737
def test_strftime_function
38-
omit("Missing tzdata on Windows") if Gem.win_platform?
3938
args = [
4039
Arrow::ArrayDatum.new(build_timestamp_array(:milli, [1504953190854])),
4140
]

ci/scripts/download_tz_database.sh

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)