Last active
February 22, 2017 10:00
-
-
Save gaupoit/366b99a29ee17752e1f137a9ff68f211 to your computer and use it in GitHub Desktop.
Config jenkin slave on Ubuntu
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
#!/bin/sh | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install default-jre | |
sudo apt-get install tar | |
#Install asp.net core | |
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list' | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 | |
sudo apt-get update | |
sudo apt-get install dotnet-dev-1.0.0-preview2.1-003177 | |
sudo apt install nuget | |
#Install python | |
sudo apt-get install python3.4 | |
#Install pip | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
python3 get-pip.py --user | |
export PATH=~/.local/bin:$PATH | |
pip install awscli --upgrade --user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment