From 56a4c6ccc066540a4d1cc1a0a11776cc186988d1 Mon Sep 17 00:00:00 2001 From: Liu Jiang Date: Sat, 5 Feb 2022 10:22:02 +0800 Subject: [PATCH] github: enable Windows 2019 for integration test Integration test fails on Windows 2019 with following errors: cargo xtest --target /d/a/td-shim/td-shim/devtools/rustc-targets/x86_64-custom.json -p test-td-exception WARNING: There is no root package to read the cargo-xbuild config from. error: target path "/d/a/td-shim/td-shim/devtools/rustc-targets/x86_64-custom.json" is not a valid file Error: target path "/d/a/td-shim/td-shim/devtools/rustc-targets/x86_64-custom.json" is not a valid file Caused by: The system cannot find the path specified. (os error 3) mingw32-make: *** [Makefile:97: integration-test-test-td-exception] Error 101 Error: Process completed with exit code 1. Signed-off-by: Liu Jiang --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0e2936c6..66f57d04 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -23,7 +23,7 @@ jobs: matrix: host_os: - ubuntu-20.04 -# - windows-2019 + - windows-2019 steps: - name: install NASM uses: ilammy/setup-nasm@v1