feat(aarch64): add WHP backend for ARM64 Windows #6
Workflow file for this run
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: Windows ARM64 Smoke Test | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: full | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: pwsh | |
| jobs: | |
| smoke: | |
| runs-on: ["self-hosted", "Windows", "ARM64", "1ES.Pool=hl-windows-arm"] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: hyperlight-dev/ci-setup-workflow@2f4142ba17cf573af44fc1e1f1ffc743daded5b3 # v1.10.0 | |
| with: | |
| rust-toolchain: "1.94" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Check environment | |
| run: | | |
| rustc --version | |
| cargo --version | |
| systeminfo | Select-String "OS Name","OS Version","System Type" | |
| - name: Build hyperlight-host | |
| run: cargo build -p hyperlight-host | |
| - name: Build guests | |
| run: just guests | |
| env: | |
| HYPERLIGHT_TARGET: aarch64 | |
| - name: Run hyperlight-host tests | |
| run: cargo test -p hyperlight-host |