v2.144.0
Features
- 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
Bugs
- 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
Misc
- Update installdependencies.sh to install correct version of libcurl #1991
Agent Downloads
Package | |
---|---|
Windows x64 | vsts-agent-win-x64-2.144.0.zip |
Windows x86 | vsts-agent-win-x86-2.144.0.zip |
macOS | vsts-agent-osx-x64-2.144.0.tar.gz |
Linux x64 | vsts-agent-linux-x64-2.144.0.tar.gz |
Linux ARM | vsts-agent-linux-arm-2.144.0.tar.gz |
After Download:
Windows x64
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-2.144.0.zip", "$PWD")
Windows x86
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-2.144.0.zip", "$PWD")
OSX
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-osx-x64-2.144.0.tar.gz
Linux x64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-x64-2.144.0.tar.gz
Linux ARM
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-arm-2.144.0.tar.gz