mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
Add dpkg/rpm building capability:
* docker container definitions for package building * cmake targets for building packages * initial gitlab CI + artifactory integration
This commit is contained in:
committed by
Nik Bougalis
parent
b2170d016a
commit
e6370a6482
16
Builds/containers/shared/install_cmake.sh
Executable file
16
Builds/containers/shared/install_cmake.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
set -ex
|
||||
|
||||
cd /tmp
|
||||
CM_INSTALLER=cmake-3.13.2-Linux-x86_64.sh
|
||||
CM_VER_DIR=/opt/local/cmake-3.13
|
||||
wget https://cmake.org/files/v3.13/$CM_INSTALLER
|
||||
chmod a+x $CM_INSTALLER
|
||||
mkdir -p $CM_VER_DIR
|
||||
ln -s $CM_VER_DIR /opt/local/cmake
|
||||
./$CM_INSTALLER --prefix=$CM_VER_DIR --exclude-subdir
|
||||
rm -f /tmp/$CM_INSTALLER
|
||||
|
||||
export PATH="/opt/local/cmake/bin:${PATH}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user