Skip to content

Commit

Permalink
ci: test against windows runner
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Dec 19, 2021
1 parent 7f4860d commit 36c3cef
Showing 1 changed file with 32 additions and 12 deletions.
44 changes: 32 additions & 12 deletions .github/workflows/ci.yml
Expand Up @@ -83,8 +83,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- windows-latest
steps:
-
name: Checkout
Expand All @@ -103,8 +102,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- windows-latest
steps:
-
name: Checkout
Expand All @@ -124,8 +122,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- windows-latest
steps:
-
name: Checkout
Expand All @@ -150,8 +147,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- windows-latest
steps:
-
name: Checkout
Expand All @@ -165,7 +161,13 @@ jobs:
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

github-container:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
-
name: Checkout
Expand All @@ -179,7 +181,13 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

gitlab:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
-
name: Checkout
Expand All @@ -193,7 +201,13 @@ jobs:
password: ${{ secrets.GITLAB_TOKEN }}

google-artifact:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
-
name: Checkout
Expand All @@ -207,7 +221,13 @@ jobs:
password: ${{ secrets.GAR_JSON_KEY }}

google-container:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
-
name: Checkout
Expand Down

0 comments on commit 36c3cef

Please sign in to comment.