forked from microsoft/azure-pipelines-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
252f4d8
commit 33c7432
Showing
9 changed files
with
149 additions
and
48 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
|
||
# ![osx](../res/apple_med.png) OSX System Pre-requisites | ||
|
||
## OSX Version | ||
|
||
Tested on 10.10 (Yosemite) and 10.11 (El Capitan). Not domain joined. | ||
|
||
## OSX | ||
|
||
Net core requires update OpenSSL - [issue 110](https://github.com/Microsoft/vsts-agent/issues/110) | ||
|
||
```bash | ||
$ brew update | ||
$ brew install openssl | ||
$ brew link --force openssl | ||
$ openssl version | ||
OpenSSL 1.0.2f 28 Jan 2016 | ||
``` | ||
|
||
[Discussion here](http://apple.stackexchange.com/questions/126830/how-to-upgrade-openssl-in-os-x) | ||
|
||
|
||
## Git | ||
|
||
If you use git, git >= 2.9.0 is a pre-requisite for OSX agents. | ||
|
||
We recommend using [home brew](http://brew.sh) to install | ||
|
||
```bash | ||
$ brew update | ||
$ brew install git | ||
==> Downloading https://homebrew.bintray.com/bottles/git-2.9.0.el_capitan.bottle.tar.gz | ||
... | ||
(restart terminal) | ||
$ git --version | ||
git version 2.9.0 | ||
$ which git | ||
/usr/local/bin/git | ||
$ ls -la /usr/local/bin/git | ||
... /usr/local/bin/git -> ../Cellar/git/2.9.0/bin/git | ||
``` | ||
|
||
## Optionally Java if TfsVc | ||
|
||
The agent distributes team explorer everywhere. | ||
|
||
But, if you are using TfsVc, install Oracle Java 1.6+ as TEE uses Java. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
|
||
# ![redhat](../res/redhat_med.png) Redhat/CentOS System Pre-requisites | ||
|
||
## Versions | ||
|
||
Tested on Redhat 7.1. Not domain joined. | ||
|
||
## Git | ||
|
||
If you use git, git >= 2.9.0 is a pre-requisite for Redhat/CentOS agents. | ||
|
||
[Based on Install Latest Git on Redhat/Centos](http://tecadmin.net/install-git-2-x-on-centos-rhel-and-fedora/#) | ||
|
||
```bash | ||
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel | ||
$ yum install gcc perl-ExtUtils-MakeMaker | ||
|
||
$ cd /usr/src | ||
$ wget https://www.kernel.org/pub/software/scm/git/git-2.9.2.tar.gz | ||
$ tar xzf git-2.9.2.tar.gz | ||
|
||
$ cd git-2.9.2 | ||
$ make prefix=/usr/local/git all | ||
$ make prefix=/usr/local/git install | ||
``` | ||
|
||
In /etc/bash.rs | ||
```bash | ||
export PATH=$PATH:/usr/local/git/bin | ||
``` | ||
|
||
## Optionally Java if TfsVc | ||
|
||
The agent distributes team explorer everywhere. | ||
|
||
But, if you are using TfsVc, install Oracle Java 1.6+ as TEE uses Java. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
|
||
# ![Ubuntu](../res/ubuntu_med.png) Ubuntu System Pre-requisites | ||
|
||
## Versions | ||
|
||
Tested on 16.04 LTS (Yosemite) and 14.04 LTS (El Capitan). Not domain joined. | ||
|
||
16.04 is recommended since latest and supports SystemD for runnings as a service. | ||
|
||
## Git | ||
|
||
If you use git, git >= 2.9.0 is a pre-requisite for Ubuntu agents. | ||
|
||
[Install Latest Git on Ubuntu](http://askubuntu.com/questions/568591/how-do-i-install-the-latest-version-of-git-with-apt/568596) | ||
|
||
```bash | ||
$ sudo apt-add-repository ppa:git-core/ppa | ||
$ sudo apt-get update | ||
$ sudo apt-get install git | ||
``` | ||
|
||
## Optionally Java if TfsVc | ||
|
||
The agent distributes team explorer everywhere. | ||
|
||
But, if you are using TfsVc, install Oracle Java 1.6+ as TEE uses Java. | ||
|
||
## Etc | ||
|
||
There was an assertion that on Ubuntu 16 this was needed. We didn't need. Adding in case it helps someone. We will verify on clean build and dev boxes. | ||
|
||
```bash | ||
apt-get install libcurl4-openssl-dev | ||
``` | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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