## Features - Added packages for Linux ARM32 (linux-arm) and Linux ARM64 (linux-arm64) (#184) - Note that these packages are pre-release status and may not work with all existing actions ## Bugs - Fixed a bug where problem matchers were not treating FromPath as a file path (#183) ## Misc - Fixed code warnings in the Runner (#174) - Fixed code warnings in the Runner tests (#178) - Added support for building the Runner in Visual Studio (#173) ## Agent Downloads | | Package | | ------- | ----------------------------------------------------------------------------------------------------------- | | Windows x64 | [actions-runner-win-x64-.zip](https://githubassets.azureedge.net/runners//actions-runner-win-x64-.zip) | | macOS | [actions-runner-osx-x64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-osx-x64-.tar.gz) | | Linux x64 | [actions-runner-linux-x64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-linux-x64-.tar.gz) | | Linux arm64 | [actions-runner-linux-arm64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-linux-arm64-.tar.gz) | | Linux arm | [actions-runner-linux-arm-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-linux-arm-.tar.gz) | After Download: ## Windows x64 ``` bash C:\> mkdir myagent && cd myagent C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-.zip", "$PWD") ``` ## OSX ``` bash ~/$ mkdir myagent && cd myagent ~/myagent$ tar xzf ~/Downloads/actions-runner-osx-x64-.tar.gz ``` ## Linux x64 ``` bash ~/$ mkdir myagent && cd myagent ~/myagent$ tar xzf ~/Downloads/actions-runner-linux-x64-.tar.gz ``` ## Linux arm64 ``` bash ~/$ mkdir myagent && cd myagent ~/myagent$ tar xzf ~/Downloads/actions-runner-linux-arm64-.tar.gz ``` ## Linux arm ``` bash ~/$ mkdir myagent && cd myagent ~/myagent$ tar xzf ~/Downloads/actions-runner-linux-arm-.tar.gz ```