We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023a13c commit 2272d5dCopy full SHA for 2272d5d
2 files changed
.github/workflows/build.yml
@@ -9,7 +9,6 @@ jobs:
9
matrix:
10
os:
11
- ubuntu-22.04 # jammy
12
- - windows-2022
13
ruby:
14
- '3.1'
15
- '3.0'
spec/core_spec.rb
@@ -47,9 +47,7 @@
47
end
48
49
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
+ server_pid = spawn('tools/server/opcua-server') # Launch server
53
example.run
54
Process.kill('TERM', server_pid) # Stop server
55
0 commit comments