# - run:
# name: Install OpenSSL
# command: |
# wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_1.tar.gz
# tar -xf OpenSSL_1_1_1.tar.gz
# cd openssl-OpenSSL_1_1_1
# ./config
# make
# sudo make install
# - run:
# name: Install CMake
# command: |
# sudo apt-get remove cmake cmake-data
# wget https://github.com/Kitware/CMake/releases/download/v3.14.3/cmake-3.14.3.tar.gz
# tar -xf cmake-3.14.3.tar.gz
# cd cmake-3.14.3
# ./configure -- -DBUILD_TESTING=OFF
# make
# sudo make install
# export PATH=/usr/local/bin:$PATH
# export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH