mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
CI: Rename os
input to runner
This more clearly describes what the value is being used for, and avoids some confusion between `os` and `os_name` in `lagom-template.yml`.
This commit is contained in:
parent
08b81b37b1
commit
8e9bf01917
Notes:
github-actions[bot]
2025-05-27 10:12:11 +00:00
Author: https://github.com/gmta
Commit: 8e9bf01917
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4892
5 changed files with 20 additions and 20 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os_name: ['Linux']
|
||||
os: [ubuntu-24.04]
|
||||
runner: [ubuntu-24.04]
|
||||
arch: ['x86_64']
|
||||
build_preset: ['Sanitizer_CI']
|
||||
toolchain: ['GNU']
|
||||
|
@ -23,21 +23,21 @@ jobs:
|
|||
|
||||
include:
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-24.04
|
||||
runner: ubuntu-24.04
|
||||
arch: 'x86_64'
|
||||
build_preset: 'Sanitizer_CI'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: true
|
||||
|
||||
- os_name: 'macOS'
|
||||
os: macos-15
|
||||
runner: macos-15
|
||||
arch: 'arm64'
|
||||
build_preset: 'Sanitizer_CI'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: false
|
||||
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-24.04
|
||||
runner: ubuntu-24.04
|
||||
arch: 'x86_64'
|
||||
build_preset: 'Fuzzers_CI'
|
||||
toolchain: 'Clang'
|
||||
|
@ -47,7 +47,7 @@ jobs:
|
|||
with:
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
os_name: ${{ matrix.os_name }}
|
||||
os: ${{ matrix.os }}
|
||||
runner: ${{ matrix.runner }}
|
||||
arch: ${{ matrix.arch }}
|
||||
build_preset: ${{ matrix.build_preset }}
|
||||
clang_plugins: ${{ matrix.clang_plugins }}
|
||||
|
|
6
.github/workflows/js-artifacts.yml
vendored
6
.github/workflows/js-artifacts.yml
vendored
|
@ -11,19 +11,19 @@ env:
|
|||
|
||||
jobs:
|
||||
build-and-package:
|
||||
runs-on: ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.runner }}
|
||||
if: github.repository == 'LadybirdBrowser/ladybird'
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os_name: ['Linux']
|
||||
os: ['ubuntu-24.04']
|
||||
runner: ['ubuntu-24.04']
|
||||
arch: ['x86_64']
|
||||
package_type: ['Linux-x86_64']
|
||||
|
||||
include:
|
||||
- os_name: 'macOS'
|
||||
os: 'macos-15'
|
||||
runner: 'macos-15'
|
||||
arch: 'arm64'
|
||||
package_type: 'macOS-universal2'
|
||||
|
||||
|
|
6
.github/workflows/js-benchmarks.yml
vendored
6
.github/workflows/js-benchmarks.yml
vendored
|
@ -8,19 +8,19 @@ on:
|
|||
|
||||
jobs:
|
||||
js-benchmarks:
|
||||
runs-on: ['js-benchmarks', 'self-hosted', '${{ matrix.os }}']
|
||||
runs-on: ['js-benchmarks', 'self-hosted', '${{ matrix.runner }}']
|
||||
if: ${{ github.repository == 'LadybirdBrowser/ladybird' && github.event.workflow_run.conclusion == 'success' }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os_name: ['Linux']
|
||||
os: ['ubuntu-24.04-internal']
|
||||
runner: ['ubuntu-24.04-internal']
|
||||
arch: ['x86_64']
|
||||
package_type: ['Linux-x86_64']
|
||||
|
||||
include:
|
||||
- os_name: 'macOS'
|
||||
os: 'macos-15'
|
||||
runner: 'macos-15'
|
||||
arch: 'arm64'
|
||||
package_type: 'macOS-universal2'
|
||||
|
||||
|
|
4
.github/workflows/lagom-template.yml
vendored
4
.github/workflows/lagom-template.yml
vendored
|
@ -9,7 +9,7 @@ on:
|
|||
os_name:
|
||||
required: true
|
||||
type: string
|
||||
os:
|
||||
runner:
|
||||
required: true
|
||||
type: string
|
||||
arch:
|
||||
|
@ -38,7 +38,7 @@ env:
|
|||
|
||||
jobs:
|
||||
CI:
|
||||
runs-on: ${{ inputs.os }}
|
||||
runs-on: ${{ inputs.runner }}
|
||||
|
||||
steps:
|
||||
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
|
||||
|
|
14
.github/workflows/nightly-lagom.yml
vendored
14
.github/workflows/nightly-lagom.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os_name: ['Linux']
|
||||
os: [ubuntu-24.04-arm]
|
||||
runner: [ubuntu-24.04-arm]
|
||||
arch: ['arm64']
|
||||
build_preset: ['Sanitizer_CI']
|
||||
toolchain: ['Clang']
|
||||
|
@ -26,35 +26,35 @@ jobs:
|
|||
|
||||
include:
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-24.04
|
||||
runner: ubuntu-24.04
|
||||
arch: 'x86_64'
|
||||
build_preset: 'Distribution_CI'
|
||||
toolchain: 'GNU'
|
||||
clang_plugins: false
|
||||
|
||||
- os_name: 'macOS'
|
||||
os: macos-15
|
||||
runner: macos-15
|
||||
arch: 'arm64'
|
||||
build_preset: 'Distribution_CI'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: false
|
||||
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-24.04-arm
|
||||
runner: ubuntu-24.04-arm
|
||||
arch: 'arm64'
|
||||
build_preset: 'Distribution_CI'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: false
|
||||
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-24.04
|
||||
runner: ubuntu-24.04
|
||||
arch: 'x86_64'
|
||||
build_preset: 'Sanitizer_CI'
|
||||
toolchain: 'Swift'
|
||||
clang_plugins: false
|
||||
|
||||
- os_name: 'macOS'
|
||||
os: macos-15
|
||||
runner: macos-15
|
||||
arch: 'arm64'
|
||||
build_preset: 'Sanitizer_CI'
|
||||
toolchain: 'Swift'
|
||||
|
@ -64,7 +64,7 @@ jobs:
|
|||
with:
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
os_name: ${{ matrix.os_name }}
|
||||
os: ${{ matrix.os }}
|
||||
runner: ${{ matrix.runner }}
|
||||
arch: ${{ matrix.arch }}
|
||||
build_preset: ${{ matrix.build_preset }}
|
||||
clang_plugins: ${{ matrix.clang_plugins }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue