Created
May 15, 2019 22:49
-
-
Save sleepdefic1t/779b4e4f0adef387be7b831ab99153e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - 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