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

Commit a9df7da

Browse files
committed
Install latest cmake in ci-build.sh
1 parent f57d2d5 commit a9df7da

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

ci-build.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,16 @@ set -e
33
sourcedir="$PWD"
44
# install dependencies
55
sudo apt update
6-
sudo apt install git cmake ninja-build clang python uuid-dev libicu-dev icu-devtools libbsd-dev libedit-dev libxml2-dev libsqlite3-dev swig libpython-dev libncurses5-dev pkg-config libblocksruntime-dev libcurl4-openssl-dev systemtap-sdt-dev tzdata rsync
6+
sudo apt install apt-transport-https ca-certificates gnupg \
7+
software-properties-common wget git cmake ninja-build clang python uuid-dev \
8+
libicu-dev icu-devtools libbsd-dev libedit-dev libxml2-dev libsqlite3-dev \
9+
swig libpython-dev libncurses5-dev pkg-config libblocksruntime-dev \
10+
libcurl4-openssl-dev systemtap-sdt-dev tzdata rsync
11+
# install latest cmake
12+
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -
13+
sudo apt-add-repository 'deb https://apt.kitware.com/ubuntu/ xenial main'
14+
sudo apt update
15+
apt install cmake
716
# install the WASI sdk
817
wget -O wasisdk.deb "https://github.com/swiftwasm/wasi-sdk/releases/download/20190421.6/wasi-sdk_3.19gefb17cb478f9.m_amd64.deb"
918
sudo dpkg -i wasisdk.deb

0 commit comments

Comments
 (0)