From f53fb7aa1fe12df30c18a26569bd975baacd9ba7 Mon Sep 17 00:00:00 2001 From: Eric Swanson Date: Thu, 11 Jan 2024 10:36:57 -0800 Subject: [PATCH] test: build dfx windows binary in e2e --- .github/workflows/e2e.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 94b4d4c803..5df644ead8 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -23,7 +23,7 @@ jobs: matrix: # We build a dynamic-linked linux binary because otherwise HSM support fails with: # Error: IO: Dynamic loading not supported - os: [ macos-12, ubuntu-20.04, ubuntu-22.04 ] + os: [ macos-12, ubuntu-20.04, ubuntu-22.04, windows-2022 ] include: - os: macos-12 target: x86_64-apple-darwin @@ -34,6 +34,9 @@ jobs: - os: ubuntu-22.04 target: x86_64-unknown-linux-gnu binary_path: target/x86_64-unknown-linux-gnu/release + - os: windows-2022 + target: x86_64-pc-windows-msvc + binary_path: target/x86_64-pc-windows-msvc/release steps: - uses: actions/checkout@v3 with: