Skip to content

Commit 0787853

Browse files
committed
Github action: Don't install unused libraries
1 parent dec93ee commit 0787853

File tree

6 files changed

+2
-12
lines changed

6 files changed

+2
-12
lines changed

.github/actions/build/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ runs:
77
run: cmake --build . --config Release --verbose
88
shell: bash
99
working-directory: build
10-

.github/actions/cmake/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ runs:
1111
cmake -LA .. \
1212
-DBUILD_DATA_TESTS=ON \
1313
-DUSE_CPP_VERSION=${CPP_VERSION} \
14-
-DWITH_PROJ=${WITH_PROJ} \
1514
-DPROTOZERO_INCLUDE_DIR=${GITHUB_WORKSPACE}/../protozero/include \
1615
-DCMAKE_BUILD_TYPE=${BUILD_TYPE}
1716
shell: bash
1817
working-directory: build
19-

.github/actions/ctest/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ runs:
77
run: ctest --output-on-failure -C Release
88
shell: bash
99
working-directory: build
10-

.github/actions/install-macos/action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ name: Install homebrew packages on macOS
33
runs:
44
using: composite
55
steps:
6-
- name: Install packages
6+
- name: Install homebrew packages
77
run: |
88
brew install \
99
boost \
10-
gdal \
11-
google-sparsehash
10+
gdal
1211
shell: bash
13-

.github/actions/install-ubuntu/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ runs:
1313
libgdal-dev \
1414
libgeos++-dev \
1515
liblz4-dev \
16-
libproj-dev \
17-
libsparsehash-dev \
1816
ruby-json \
1917
spatialite-bin
2018
shell: bash
21-

.github/workflows/clang-tidy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
libgdal-dev \
4141
libgeos++-dev \
4242
liblz4-dev \
43-
libsparsehash-dev \
4443
make \
4544
zlib1g-dev
4645
shell: bash

0 commit comments

Comments
 (0)