Skip to content

chore(deps): update all non-major dependencies #13325

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #13325

Workflow file for this run

name: Test Windows Binary
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
merge_group:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-windows-${{ github.ref }}
cancel-in-progress: true
jobs:
test-unit:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Run Windows unit tests
run: make test-unit
shell: pwsh
test-e2e-without-cluster:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build Windows binary and zarf packages
uses: ./.github/actions/packages
with:
init-package: "false"
os: windows
shell: pwsh
# TODO: (@WSTARR) Builds an init package manually off of the v0.30.1
# release since Windows in GitHub cannot natively build linux containers
# and the tests this workflow run do not use the agent at all!
- name: Build init-package
run: |
make release-init-package ARCH=amd64 AGENT_IMAGE_TAG=v0.30.1
- name: Run windows E2E tests
run: make test-e2e-without-cluster
shell: pwsh