mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
* Cross compile for win-x86, linux-arm, linux-arm64 * Build with actions instead * Remove win-x86 * Preserve CURRENT_PLATFORM in dev.sh * build.yaml * Fix formatting. Remove piplines * Use 4 space indent consistently * x32 -> x86 * TEMP: Only test when platform === target runtime Fix arm64 node externals url * win-x86 externals * Temporarily bench rhel * Add RHEL6, skip L0 on arm for now * Add stub for downloading new node externals when they are ready * Remove RHEL6 * Package based on new runtime names * Remove unused rhel from matrix includes * Update release, add packages * RID typo * Cant cross test arm on x64 hosts * New arch is a feature Dont release x86 until we have an e2e test machine * Fix version * Get version from file to avoid exec error during package on x64 host for arm package * Update Release Notes for 2.161.0 (#195) * More cleanup * Update release notes
2.4 KiB
2.4 KiB
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-<RUNNER_VERSION>.zip |
| macOS | actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz |
| Linux x64 | actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz |
| Linux arm64 | actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz |
| Linux arm | actions-runner-linux-arm-<RUNNER_VERSION>.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\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
OSX
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
Linux x64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
Linux arm64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz
Linux arm
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz