Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sleepdefic1t/779b4e4f0adef387be7b831ab99153e7 to your computer and use it in GitHub Desktop.
Save sleepdefic1t/779b4e4f0adef387be7b831ab99153e7 to your computer and use it in GitHub Desktop.
# - 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment