Skip to content

Commit 8cff21f

Browse files
authored
GH-45178: [CI] Remove clcache related codes (#45182)
### Rationale for this change We don't use clcache anymore. ### What changes are included in this PR? Remove clcache related codes in files except `CHANGELOG.md`: ```console $ git grep clcache CHANGELOG.md:* [ARROW-3167](https://issues.apache.org/jira/browse/ARROW-3167) - [CI] Limit clcache cache size CHANGELOG.md:* [ARROW-2231](https://issues.apache.org/jira/browse/ARROW-2231) - [CI] Use clcache on AppVeyor for faster builds CHANGELOG.md:* [ARROW-2238](https://issues.apache.org/jira/browse/ARROW-2238) - [C++] Detect and use clcache in cmake configuration ci/docker/python-wheel-windows-vs2019.dockerfile:# ENV CLCACHE_DIR="C:\clcache" ci/docker/python-wheel-windows-vs2019.dockerfile:# RUN pip install git+https://github.com/Nuitka/clcache.git ci/scripts/python_wheel_windows_build.bat: -DCMAKE_CXX_COMPILER=clcache ^ docker-compose.yml: python-wheel-windows-clcache: docker-compose.yml: name: python-wheel-windows-clcache docker-compose.yml: - "${DOCKER_VOLUME_PREFIX}python-wheel-windows-clcache:C:/clcache" docker-compose.yml: - "${DOCKER_VOLUME_PREFIX}python-wheel-windows-clcache:C:/clcache" ``` ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #45178 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Jacob Wujciak-Jens <[email protected]>
1 parent 777797e commit 8cff21f

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

ci/docker/python-wheel-windows-vs2019.dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,6 @@ RUN python -m pip install -U pip setuptools
9191
COPY python/requirements-wheel-build.txt arrow/python/
9292
RUN python -m pip install -r arrow/python/requirements-wheel-build.txt
9393

94-
# ENV CLCACHE_DIR="C:\clcache"
95-
# ENV CLCACHE_COMPRESS=1
96-
# ENV CLCACHE_COMPRESSLEVEL=6
97-
# RUN pip install git+https://github.com/Nuitka/clcache.git
98-
9994
# For debugging purposes
10095
# RUN wget --no-check-certificate https://github.com/lucasg/Dependencies/releases/download/v1.10/Dependencies_x64_Release.zip
10196
# RUN unzip Dependencies_x64_Release.zip -d Dependencies && setx path "%path%;C:\Dependencies"

ci/scripts/python_wheel_windows_build.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ cmake ^
9595
-DARROW_WITH_ZLIB=%ARROW_WITH_ZLIB% ^
9696
-DARROW_WITH_ZSTD=%ARROW_WITH_ZSTD% ^
9797
-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE% ^
98-
-DCMAKE_CXX_COMPILER=clcache ^
9998
-DCMAKE_INSTALL_PREFIX=C:\arrow-dist ^
10099
-DCMAKE_UNITY_BUILD=%CMAKE_UNITY_BUILD% ^
101100
-DMSVC_LINK_VERBOSE=ON ^

docker-compose.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,6 @@ volumes:
196196
name: python-wheel-manylinux2014-ccache
197197
python-wheel-manylinux-2-28-ccache:
198198
name: python-wheel-manylinux-2-28-ccache
199-
python-wheel-windows-clcache:
200-
name: python-wheel-windows-clcache
201199
ubuntu-ccache:
202200
name: ${ARCH}-ubuntu-${UBUNTU}-ccache
203201

@@ -1278,7 +1276,6 @@ services:
12781276
# - abrarov/msvc-2019:2.11.0
12791277
# - ${REPO}:python-${PYTHON}-wheel-windows-vs2019-vcpkg-${VCPKG}-${PYTHON_WHEEL_WINDOWS_IMAGE_REVISION}
12801278
volumes:
1281-
- "${DOCKER_VOLUME_PREFIX}python-wheel-windows-clcache:C:/clcache"
12821279
- type: bind
12831280
source: .
12841281
target: "C:/arrow"
@@ -1292,7 +1289,6 @@ services:
12921289
context: .
12931290
dockerfile: ci/docker/python-wheel-windows-test-vs2019.dockerfile
12941291
volumes:
1295-
- "${DOCKER_VOLUME_PREFIX}python-wheel-windows-clcache:C:/clcache"
12961292
- type: bind
12971293
source: .
12981294
target: "C:/arrow"

0 commit comments

Comments
 (0)