File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 23
23
sudo apt-get install -y curl protobuf-compiler build-essential git wget unzip python3 python3-pip \
24
24
libssl-dev libffi-dev libreadline-dev zlib1g-dev libbz2-dev libsqlite3-dev libncurses5-dev \
25
25
libgdbm-dev libnss3-dev liblzma-dev libxml2-dev libxmlsec1-dev libffi-dev libyaml-dev
26
+ - name : Install CMake 3.28
27
+ run : |
28
+ wget https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh
29
+ sudo mkdir /opt/cmake
30
+ sudo sh cmake-3.28.0-linux-x86_64.sh --skip-license --prefix=/opt/cmake
31
+ sudo ln -sf /opt/cmake/bin/cmake /usr/local/bin/cmake
32
+ sudo ln -sf /opt/cmake/bin/ctest /usr/local/bin/ctest
33
+ - name : Verify CMake version
34
+ run : cmake --version
26
35
- run : make build
27
36
- name : Run C++ tests
28
37
run : make test
You can’t perform that action at this time.
0 commit comments