Skip to content

Commit 3b8c790

Browse files
authored
Attempt to stop windows flappy CI tests (#294)
1 parent a61b8f7 commit 3b8c790

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/ci.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,31 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix:
51-
os: ["ubuntu-latest", "windows-2019"]
51+
os: ["ubuntu-latest"]
5252
elixir: ["1.17", "1.16", "1.15"]
5353
otp: ["27", "26", "25"]
5454
exclude:
5555
- elixir: "1.15"
5656
otp: "27"
5757
- elixir: "1.16"
5858
otp: "27"
59+
include:
60+
- os: "windows-2019"
61+
otp: "27"
62+
elixir: "1.17"
63+
5964
steps:
6065
- uses: actions/checkout@v4
6166
- uses: erlef/setup-beam@v1
6267
with:
6368
otp-version: ${{ matrix.otp }}
6469
elixir-version: ${{ matrix.elixir }}
65-
- uses: egor-tensin/vs-shell@v2
66-
if: runner.os == 'Windows'
70+
71+
- uses: ilammy/msvc-dev-cmd@v1
72+
if: matrix.os == 'windows-2019'
73+
with:
74+
arch: x64
75+
6776
- uses: actions/cache@v3
6877
with:
6978
path: deps

0 commit comments

Comments
 (0)