Skip to content

Commit 67d3a3d

Browse files
authored
ci: merge the two apt-get install steps into one (#583)
protobuf-compiler and tippecanoe were installed in separate steps with separate 'apt-get install' invocations. Merge them into a single step, and add an explicit 'apt-get update' first for robustness against stale package indexes on the runner image. Refs #576
1 parent 1370a89 commit 67d3a3d

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ jobs:
2828
uses: mozilla-actions/sccache-action@fc920bf0ec8de6ee65d409111f7ec508035751ba # v0.0.11
2929
- name: Check out repository
3030
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
31-
- name: Install protocol buffers compiler
31+
- name: Install protobuf compiler and tippecanoe
3232
run: |
33-
sudo apt-get install -y protobuf-compiler
33+
sudo apt-get update
34+
sudo apt-get install -y protobuf-compiler tippecanoe
3435
protoc --version
35-
- name: Install tippecanoe
36-
run: |
37-
sudo apt-get install -y tippecanoe
3836
tippecanoe --version
3937
- name: Install Rust LLVM tools preview
4038
run: rustup component add llvm-tools-preview

0 commit comments

Comments
 (0)