ci: introduce support for manual runs on specific commit & targets

This commit is contained in:
Loris Cro 2022-11-25 19:57:36 +01:00
parent 7fd34f18c5
commit f1ec438069

View File

@ -1,5 +1,38 @@
name: ci name: ci
on: on:
workflow_dispatch:
# Allows launching a CI run on an arbitrary commit
# and also specify only a subset of the targets to test
inputs:
commit:
description: "master branch commit to build"
required: true
default: 'HEAD'
type: string
x86_64-linux-debug:
required: false
default: true
type: boolean
x86_64-linux-release:
required: false
default: true
type: boolean
x86_64-macos:
required: false
default: true
type: boolean
x86_64-windows:
required: false
default: true
type: boolean
aarch64-linux:
required: false
default: true
type: boolean
aarch64-macos:
required: false
default: true
type: boolean
pull_request: pull_request:
push: push:
branches: branches:
@ -10,52 +43,76 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
x86_64-linux-debug: x86_64-linux-debug:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-debug"] }}
runs-on: [self-hosted, Linux, x86_64] runs-on: [self-hosted, Linux, x86_64]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: sh ./ci/linux/build-x86_64-debug.sh run: sh ./ci/linux/build-x86_64-debug.sh
- name: Print Version - name: Print Version
run: echo "$(build-debug/stage3-debug/bin/zig version)" run: echo "$(build-debug/stage3-debug/bin/zig version)"
x86_64-linux-release: x86_64-linux-release:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-release"] }}
runs-on: [self-hosted, Linux, x86_64] runs-on: [self-hosted, Linux, x86_64]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: sh ./ci/linux/build-x86_64-release.sh run: sh ./ci/linux/build-x86_64-release.sh
x86_64-macos: x86_64-macos:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-macos"] }}
runs-on: "macos-11" runs-on: "macos-11"
env: env:
ARCH: "x86_64" ARCH: "x86_64"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: ./ci/macos/build-x86_64.sh run: ./ci/macos/build-x86_64.sh
x86_64-windows: x86_64-windows:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-windows"] }}
runs-on: windows-latest runs-on: windows-latest
env: env:
ARCH: "x86_64" ARCH: "x86_64"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: ./ci/windows/build.ps1 run: ./ci/windows/build.ps1
aarch64-linux: aarch64-linux:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-linux"] }}
runs-on: [self-hosted, Linux, aarch64] runs-on: [self-hosted, Linux, aarch64]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: sh ./ci/linux/build-aarch64.sh run: sh ./ci/linux/build-aarch64.sh
aarch64-macos: aarch64-macos:
if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-macos"] }}
runs-on: [self-hosted, macOS, aarch64] runs-on: [self-hosted, macOS, aarch64]
env: env:
ARCH: "aarch64" ARCH: "aarch64"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Switch to specific commit
if: ${{ github.event_name == 'workflow_dispatch' }}
run: git checkout ${{ inputs.commit }}
- name: Build and Test - name: Build and Test
run: ./ci/macos/build-aarch64.sh run: ./ci/macos/build-aarch64.sh