Add windows to release and build workflow

pull/253/head
rishflab 3 years ago
parent bcdde021eb
commit e9b56934e8

@ -44,12 +44,14 @@ jobs:
build: build:
strategy: strategy:
matrix: 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: include:
- target: x86_64-unknown-linux-gnu - target: x86_64-unknown-linux-gnu
os: ubuntu-latest os: ubuntu-latest
- target: x86_64-apple-darwin - target: x86_64-apple-darwin
os: macos-latest os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:

@ -14,6 +14,8 @@ jobs:
os: ubuntu-latest os: ubuntu-latest
- target: x86_64-apple-darwin - target: x86_64-apple-darwin
os: macos-latest os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Checkout tagged commit - name: Checkout tagged commit

@ -2,6 +2,7 @@ status = [
"static_analysis", "static_analysis",
"build (x86_64-unknown-linux-gnu)", "build (x86_64-unknown-linux-gnu)",
"build (x86_64-apple-darwin)", "build (x86_64-apple-darwin)",
"build (x86_64-pc-windows-msvc)",
"test (x86_64-unknown-linux-gnu)", "test (x86_64-unknown-linux-gnu)",
"test (x86_64-apple-darwin)", "test (x86_64-apple-darwin)",
"docker_tests (happy_path)", "docker_tests (happy_path)",

Loading…
Cancel
Save