windows-installers #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Windows onboarding leg: exercise scripts/install-ao.ps1 on windows-latest. | |
| # Skills install via `ao skills link` (canonical AgentOps 3.3 path). The old | |
| # install-codex.ps1 plugin installer is retained only as a tombstone. | |
| name: windows-installers | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '45 9 * * *' | |
| pull_request: | |
| paths: | |
| - 'scripts/install-ao.ps1' | |
| - 'scripts/install-codex.ps1' | |
| - 'tests/windows/test-windows-smoke.ps1' | |
| - '.github/workflows/windows-installers.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| windows-installers: | |
| runs-on: windows-latest | |
| timeout-minutes: 15 | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Confirm install-codex.ps1 is a removed-installer tombstone | |
| run: | | |
| $script = Get-Content -Raw (Join-Path $env:GITHUB_WORKSPACE 'scripts\install-codex.ps1') | |
| if ($script -notmatch 'removed in 3\.3') { | |
| throw "install-codex.ps1 should be an AgentOps 3.3 tombstone" | |
| } | |
| if ($script -notmatch 'ao skills link') { | |
| throw "install-codex.ps1 tombstone must point at ao skills link" | |
| } | |
| - name: Install ao CLI release binary (sandboxed install dir) | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| $sandboxInstall = Join-Path $env:RUNNER_TEMP "ao-install" | |
| New-Item -ItemType Directory -Force -Path $sandboxInstall | Out-Null | |
| & "$env:GITHUB_WORKSPACE\scripts\install-ao.ps1" ` | |
| -InstallDir $sandboxInstall ` | |
| -NoPathUpdate | |
| & (Join-Path $sandboxInstall 'ao.exe') version | |
| - name: Run Windows smoke (ao install + skills link + doctor guidance) | |
| run: | | |
| & "$env:GITHUB_WORKSPACE\tests\windows\test-windows-smoke.ps1" ` | |
| -RepoRoot $env:GITHUB_WORKSPACE |