From 626fb266ea740e0f93b232c33c0dc2bf0a3c675f Mon Sep 17 00:00:00 2001 From: ZhangJian He Date: Wed, 28 Aug 2024 20:49:04 +0800 Subject: [PATCH] ci(bindings/go): add windows to matrix Signed-off-by: ZhangJian He --- .github/scripts/test_go_binding/matrix.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/scripts/test_go_binding/matrix.yaml b/.github/scripts/test_go_binding/matrix.yaml index 27ba73a8501a..ee6fe9d4d483 100644 --- a/.github/scripts/test_go_binding/matrix.yaml +++ b/.github/scripts/test_go_binding/matrix.yaml @@ -15,12 +15,18 @@ # specific language governing permissions and limitations # under the License. -os: ["ubuntu-latest"] +os: + - ubuntu-latest + - windows-latest build: - target: "x86_64-unknown-linux-gnu" cc: "gcc" goos: "linux" goarch: "amd64" + - target: "x86_64-pc-windows-msvc" + cc: "cl.exe" + goos: "windows" + goarch: "amd64" service: - "memory"