Public dry run dryrun-b468a859465a
Source commit: b468a859465ae17a287d83b7ca1c5a86c5f1bdc6 Public tree identity: sha256:efc0a1cf2eb1044109ac7d5064062d83a63d7a54fe6aca62033efa6f74af14de
This commit is contained in:
commit
18d1701a77
109 changed files with 34610 additions and 0 deletions
39
.forgejo/workflows/windows-validation.yml
Normal file
39
.forgejo/workflows/windows-validation.yml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
name: Windows validation
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
windows-runner:
|
||||
# Manual on purpose: the Forgejo Windows runner is intermittently online.
|
||||
# Run this workflow for release validation when a runner with this label is available.
|
||||
runs-on: windows
|
||||
timeout-minutes: 45
|
||||
env:
|
||||
DISASMER_WINDOWS_VALIDATION: forgejo-windows-runner
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Tool versions
|
||||
shell: pwsh
|
||||
run: |
|
||||
rustc --version
|
||||
cargo --version
|
||||
node --version
|
||||
|
||||
- name: Acceptance environment report
|
||||
shell: pwsh
|
||||
run: node scripts/acceptance-report.js windows
|
||||
|
||||
- name: Format check
|
||||
shell: pwsh
|
||||
run: cargo fmt --all --check
|
||||
|
||||
- name: Windows runtime unit coverage
|
||||
shell: pwsh
|
||||
run: cargo test -p disasmer-node windows_backend_is_labeled_user_attached_dev_execution
|
||||
|
||||
- name: Windows runner smoke
|
||||
shell: pwsh
|
||||
run: node scripts/windows-runner-smoke.js
|
||||
Loading…
Add table
Add a link
Reference in a new issue