ci: add bounded complete release gate
This commit is contained in:
parent
0a934cf578
commit
2ac054864d
11 changed files with 772 additions and 102 deletions
16
.github/workflows/headless-portability.yml
vendored
16
.github/workflows/headless-portability.yml
vendored
|
|
@ -78,10 +78,10 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install .NET 10
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "10.0.x"
|
||||
global-json-file: global.json
|
||||
|
||||
# No apt step here on purpose. This job's whole claim is that the closure
|
||||
# below is presentation-free: it builds Bake, Plugin.Abstractions, Core,
|
||||
|
|
@ -159,10 +159,10 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install .NET 10
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "10.0.x"
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Build and test the portable launcher
|
||||
shell: pwsh
|
||||
|
|
@ -231,10 +231,10 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install .NET 10
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "10.0.x"
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Build and publish Linux graphical client
|
||||
shell: pwsh
|
||||
|
|
@ -324,10 +324,10 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install .NET 10
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "10.0.x"
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Install lavapipe, the Vulkan loader and Xvfb
|
||||
shell: bash
|
||||
|
|
|
|||
38
.github/workflows/release-gate.yml
vendored
Normal file
38
.github/workflows/release-gate.yml
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
name: Complete Release gate
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
complete-release:
|
||||
name: Complete Release suite (Windows)
|
||||
runs-on: windows-latest
|
||||
timeout-minutes: 45
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Run complete bounded Release gate
|
||||
shell: pwsh
|
||||
run: ./tools/run-release-gate.ps1
|
||||
|
||||
- name: Upload Release gate evidence
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-gate-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
if-no-files-found: error
|
||||
retention-days: 14
|
||||
path: artifacts/release-gate/
|
||||
Loading…
Add table
Add a link
Reference in a new issue