File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,18 @@ EXECUTOR ?= $(OS)
44.PHONY : install-deps
55install-deps :
66# this assumes the linux executor on CircleCI runs ubuntu/debian
7- ifneq (,$(filter $(EXECUTOR ) ,debian linux ) )
7+ ifneq (,$(filter $(EXECUTOR ) ,debian) )
88 apt-get update
99 apt-get install --no-install-recommends -y \
1010 build-essential ninja-build cmake \
1111 python3 python3-dev python3-setuptools
1212endif
13+ ifneq (,$(filter $(EXECUTOR ) ,linux) )
14+ sudo apt-get update
15+ sudo apt-get install --no-install-recommends -y \
16+ build-essential ninja-build cmake \
17+ python3 python3-dev python3-setuptools
18+ endif
1319ifeq ($(EXECUTOR ) , alpine)
1420 apk update
1521 apk add --no-cache \
@@ -18,4 +24,4 @@ ifeq ($(EXECUTOR), alpine)
1824endif
1925ifeq ($(EXECUTOR ) , macos)
2026 brew install cmake
21- endif
27+ endif
You can’t perform that action at this time.
0 commit comments