Skip to content

Commit

Permalink
[ci] Remove ccache due to memory {speed, space} restrictions
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Oct 22, 2019
1 parent e17d8a0 commit bb8dd64
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .ci/azure-pipelines/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,11 @@ jobs:
variables:
BUILD_DIR: '$(Agent.BuildDirectory)/build'
CMAKE_CXX_FLAGS: '-Wall -Wextra -Wabi -O2'
CCACHE_DIR: $(Pipeline.Workspace)/ccache
CCACHE_MAXSIZE: 15G
steps:
- task: CacheBeta@0
inputs:
key: ccache | gcc | $(Agent.OS)
path: $(CCACHE_DIR)
displayName: Fetch cached files for ccache
- script: ccache -z
displayName: 'Zero ccache statistics'
- script: |
mkdir $BUILD_DIR && cd $BUILD_DIR
cmake $(Build.SourcesDirectory) \
-DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS" \
-DPCL_ENABLE_CCACHE=ON \
-DPCL_ONLY_CORE_POINT_TYPES=ON \
-DBUILD_simulation=ON \
-DBUILD_surface_on_nurbs=ON \
Expand All @@ -51,8 +41,6 @@ jobs:
cmake --build . -- test_filters test_registration test_registration_api
cmake --build . -- -j2
displayName: 'Build Library'
- script: ccache -s
displayName: 'Display ccache statistics'
- script: |
cd $BUILD_DIR/test
ctest -V -T Test
Expand Down
1 change: 0 additions & 1 deletion .dev/docker/env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update \
&& apt-get install -y \
ccache \
cmake \
g++ \
wget \
Expand Down

0 comments on commit bb8dd64

Please sign in to comment.