mirror of
https://github.com/actions/runner.git
synced 2025-12-15 22:47:01 +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
69 lines
1.5 KiB
YAML
69 lines
1.5 KiB
YAML
name: Runner CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/*
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
runtime: [ linux-x64, linux-arm64, linux-arm, win-x64, osx-x64 ]
|
|
include:
|
|
- runtime: linux-x64
|
|
os: ubuntu-latest
|
|
devScript: ./dev.sh
|
|
|
|
- runtime: linux-arm64
|
|
os: ubuntu-latest
|
|
devScript: ./dev.sh
|
|
|
|
- runtime: linux-arm
|
|
os: ubuntu-latest
|
|
devScript: ./dev.sh
|
|
|
|
- runtime: osx-x64
|
|
os: macOS-latest
|
|
devScript: ./dev.sh
|
|
|
|
- runtime: win-x64
|
|
os: windows-latest
|
|
devScript: ./dev
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
# Build runner layout
|
|
- name: Build & Layout Release
|
|
run: |
|
|
${{ matrix.devScript }} layout Release ${{ matrix.runtime }}
|
|
working-directory: src
|
|
|
|
# Run tests
|
|
- name: L0
|
|
run: |
|
|
${{ matrix.devScript }} test
|
|
working-directory: src
|
|
if: matrix.runtime != 'linux-arm64' && matrix.runtime != 'linux-arm'
|
|
|
|
# Create runner package tar.gz/zip
|
|
- name: Package Release
|
|
if: github.event_name != 'pull_request'
|
|
run: |
|
|
${{ matrix.devScript }} package Release
|
|
working-directory: src
|
|
|
|
# Upload runner package tar.gz/zip as artifact
|
|
- name: Publish Artifact
|
|
if: github.event_name != 'pull_request'
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: runner-package-${{ matrix.runtime }}
|
|
path: _package
|