- Allow the container to bring its own Node.js #1979
- Populate AzurePS demand if Az module is installed on Agent machine #1984
- Add agent support for the Node v10 runtime #1972
- Fix null ref caused by build.syncsource=false. #1904
- Agent changes to use HTTP 1.1 on Linux and OSX #1970
- Create container/network with label, best effort clean them up. #1915
- Add retry for task zip download. #1926
- Fix for Nested TestSuite in JunitResultReader #1978
- Let container job handle prepends path correctly. #1977
- Update installdependencies.sh to install correct version of libcurl #1991
Package | |
---|---|
Windows x64 | vsts-agent-win-x64-<AGENT_VERSION>.zip |
Windows x86 | vsts-agent-win-x86-<AGENT_VERSION>.zip |
macOS | vsts-agent-osx-x64-<AGENT_VERSION>.tar.gz |
Linux x64 | vsts-agent-linux-x64-<AGENT_VERSION>.tar.gz |
Linux ARM | vsts-agent-linux-arm-<AGENT_VERSION>.tar.gz |
After Download:
C:\> mkdir myagent && cd myagent
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\vsts-agent-win-x64-<AGENT_VERSION>.zip", "$PWD")
C:\> mkdir myagent && cd myagent
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\vsts-agent-win-x86-<AGENT_VERSION>.zip", "$PWD")
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-osx-x64-<AGENT_VERSION>.tar.gz
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-x64-<AGENT_VERSION>.tar.gz
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-arm-<AGENT_VERSION>.tar.gz