Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable ccache on Ubuntu CI job #3415

Merged
merged 1 commit into from
Oct 22, 2019
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
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