ci(gitea): comment out windows job
CI / linux (push) Successful in 14s

This commit is contained in:
2026-09-14 01:13:03 +02:00
parent f4a56b41e2
commit dbe8e6b81b
+36 -37
View File
@@ -32,40 +32,39 @@ jobs:
mkdir -p "$HOME" mkdir -p "$HOME"
./scripts/install.sh --dry-run --client both --platform linux ./scripts/install.sh --dry-run --client both --platform linux
windows: # windows:
if: ${{ false }} # runs-on: windows-latest
runs-on: windows-latest # steps:
steps: # - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # - name: Install current Codex CLI for schema validation
- name: Install current Codex CLI for schema validation # shell: powershell
shell: powershell # run: npm install --global @openai/codex@latest
run: npm install --global @openai/codex@latest # - name: PowerShell syntax
- name: PowerShell syntax # shell: powershell
shell: powershell # run: |
run: | # $errors = @()
$errors = @() # Get-ChildItem scripts,shared/hooks -Recurse -Filter *.ps1 | ForEach-Object {
Get-ChildItem scripts,shared/hooks -Recurse -Filter *.ps1 | ForEach-Object { # $tokens = $null
$tokens = $null # $parseErrors = $null
$parseErrors = $null # [void][System.Management.Automation.Language.Parser]::ParseFile($_.FullName, [ref]$tokens, [ref]$parseErrors)
[void][System.Management.Automation.Language.Parser]::ParseFile($_.FullName, [ref]$tokens, [ref]$parseErrors) # $errors += $parseErrors
$errors += $parseErrors # }
} # if ($errors.Count) { $errors | ForEach-Object { Write-Error $_ }; exit 1 }
if ($errors.Count) { $errors | ForEach-Object { Write-Error $_ }; exit 1 } # - name: Build
- name: Build # shell: powershell
shell: powershell # run: $env:REQUIRE_CODEX_SCHEMA = 'true'; .\scripts\build.ps1
run: $env:REQUIRE_CODEX_SCHEMA = 'true'; .\scripts\build.ps1 # - name: Doctor
- name: Doctor # shell: powershell
shell: powershell # run: .\scripts\doctor.ps1
run: .\scripts\doctor.ps1 # - name: Platform package tests
- name: Platform package tests # shell: powershell
shell: powershell # run: .\scripts\test-platform-packages.ps1
run: .\scripts\test-platform-packages.ps1 # - name: Managed manifest tests
- name: Managed manifest tests # shell: powershell
shell: powershell # run: .\scripts\test-managed-install.ps1
run: .\scripts\test-managed-install.ps1 # - name: Build validation tests
- name: Build validation tests # shell: powershell
shell: powershell # run: .\scripts\test-build-validation.ps1
run: .\scripts\test-build-validation.ps1 # - name: Install dry run
- name: Install dry run # shell: powershell
shell: powershell # run: .\scripts\install.ps1 -DryRun -Client Both -Platform Windows
run: .\scripts\install.ps1 -DryRun -Client Both -Platform Windows