Skip to content

Commit 2272d5d

Browse files
committed
Give up windows workflows
1 parent 023a13c commit 2272d5d

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
matrix:
1010
os:
1111
- ubuntu-22.04 # jammy
12-
- windows-2022
1312
ruby:
1413
- '3.1'
1514
- '3.0'

spec/core_spec.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@
4747
end
4848

4949
around(:each) do |example|
50-
is_win = RUBY_PLATFORM =~ /mswin|mingw|cygwin/
51-
executable = is_win ? 'opcua-server.exe' : 'opcua-server'
52-
server_pid = spawn(File.join('tools', 'server', executable)) # Launch server
50+
server_pid = spawn('tools/server/opcua-server') # Launch server
5351
example.run
5452
Process.kill('TERM', server_pid) # Stop server
5553
end

0 commit comments

Comments
 (0)