From e9b56934e8bdf37c84215af271ee8e881fad460f Mon Sep 17 00:00:00 2001 From: rishflab Date: Tue, 2 Mar 2021 11:12:01 +1100 Subject: [PATCH] Add windows to release and build workflow --- .github/workflows/ci.yml | 4 +++- .github/workflows/release-cli.yml | 2 ++ bors.toml | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34f8b0f5..2bc0037a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,12 +44,14 @@ jobs: build: strategy: matrix: - target: [ x86_64-unknown-linux-gnu, x86_64-apple-darwin ] + target: [ x86_64-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc ] include: - target: x86_64-unknown-linux-gnu os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest + - target: x86_64-pc-windows-msvc + os: windows-latest runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml index 82ea752e..13c4efb8 100644 --- a/.github/workflows/release-cli.yml +++ b/.github/workflows/release-cli.yml @@ -14,6 +14,8 @@ jobs: os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest + - target: x86_64-pc-windows-msvc + os: windows-latest runs-on: ${{ matrix.os }} steps: - name: Checkout tagged commit diff --git a/bors.toml b/bors.toml index 8f1b1ab7..11761796 100644 --- a/bors.toml +++ b/bors.toml @@ -2,6 +2,7 @@ status = [ "static_analysis", "build (x86_64-unknown-linux-gnu)", "build (x86_64-apple-darwin)", + "build (x86_64-pc-windows-msvc)", "test (x86_64-unknown-linux-gnu)", "test (x86_64-apple-darwin)", "docker_tests (happy_path)",