Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 28b7f03

Browse files
Chad Doughertyapavlo
authored andcommitted
centos needs cmake3 too
1 parent bc7324c commit 28b7f03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pipeline {
108108
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
109109
sh 'python ./script/validators/source_validator.py'
110110
sh 'mkdir build'
111-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
111+
sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
112112
}
113113
}
114114
stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Release)') {
@@ -117,7 +117,7 @@ pipeline {
117117
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
118118
sh 'python ./script/validators/source_validator.py'
119119
sh 'mkdir build'
120-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
120+
sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
121121
}
122122
}
123123

script/installation/packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ elif [[ "$DISTRO" == *"REDHAT"* ]] && [[ "${DISTRO_VER%.*}" == "7" ]]; then
156156
git \
157157
gcc-c++ \
158158
make \
159-
cmake \
159+
cmake3 \
160160
flex \
161161
bison \
162162
libevent-devel \

0 commit comments

Comments
 (0)