Skip to content

Commit 1880120

Browse files
committed
Stop running CI on Windows (#386)
Windows nightlies have been broken for a few days now. Probably related, core Tensorflow is dropping native Windows support for anything but tensorflow-cpu (which we don't install by default) as of the upcoming tf release (2.11). Both core tensorflow and our development guide recommend WSL2. I think the simplest solution here is to stop running windows CI and continue recommending WSL2 for running on windows.
1 parent e5ce378 commit 1880120

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ on:
88
jobs:
99
build:
1010
name: Run tests
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
matrix:
14-
os: [windows-latest, ubuntu-latest]
11+
runs-on: ubuntu-latest
1512
steps:
1613
- uses: actions/checkout@v2
1714
- name: Set up Python 3.7

.github/workflows/nightly.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ on:
99
jobs:
1010
build:
1111
name: Run tests
12-
runs-on: ${{ matrix.os }}
13-
strategy:
14-
matrix:
15-
os: [windows-latest, ubuntu-latest]
12+
runs-on: ubuntu-latest
1613
steps:
1714
- uses: actions/checkout@v2
1815
- name: Set up Python 3.7

0 commit comments

Comments
 (0)