Skip to content

Commit 18c3643

Browse files
committed
fixup! fixup! fixup! fixup! Bump all deps and CI; Fix Elixir 1.20 warnings
1 parent 89bc2e5 commit 18c3643

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/windows.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212
beam:
1313
- { otp: '28', elixir: '1.19' }
1414
os:
15-
- name: Windows 2022
16-
runner: windows-2022
17-
env:
18-
ImageOS: win22
1915
- name: Windows 2025
2016
runner: blacksmith-2vcpu-windows-2025
2117
env:

test/basic_uart_test.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,8 @@ defmodule BasicUARTTest do
163163
# Don't run against tty0tty since it sends data almost
164164
# instantaneously. Also, Windows appears to have a deep
165165
# send buffer. Need to investigate the Windows failure more.
166-
IO.puts("My os type is #{inspect(:os.type())}")
167166

168-
if not String.starts_with?(UARTTest.port1(), "tnt") and :os.type() != {:windows, :nt} do
167+
if not String.starts_with?(UARTTest.port1(), "tnt") and :os.type() != {:win32, :nt} do
169168
assert :ok = UART.open(uart1, UARTTest.port1(), speed: 1200)
170169

171170
# Send more than can be sent on a 1200 baud link

0 commit comments

Comments
 (0)