We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f76119 commit 43623b6Copy full SHA for 43623b6
chunks/tool-brew/Dockerfile
@@ -12,5 +12,4 @@ ENV MANPATH="$MANPATH:/home/linuxbrew/.linuxbrew/share/man"
12
ENV INFOPATH="$INFOPATH:/home/linuxbrew/.linuxbrew/share/info"
13
ENV HOMEBREW_NO_AUTO_UPDATE=1
14
15
-RUN sudo apt remove -y cmake \
16
- && brew install cmake
+RUN brew install cmake
tests/tool-brew.yaml
@@ -7,7 +7,13 @@
7
command: [brew, doctor]
8
assert:
9
- stderr.indexOf("error") == -1
10
+ - status == 0
11
- desc: it should have valid configuration
command: [brew, config]
- status == 0
+- desc: it should have cmake
+ command: [cmake, --version]
17
+ assert:
18
+ - stderr.indexOf("cmake version") == -1
19
0 commit comments