Skip to content

Commit

Permalink
CI: Use ruby 3.2.2 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Mar 31, 2023
1 parent 08e8787 commit a85fdb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -42,17 +42,17 @@ jobs:
include:
- build: linux-x86_64
os: ubuntu-22.04
ruby-version: 3.1.2
ruby-version: 3.2.1
run-tests: 'true'
target: x86_64-unknown-linux-gnu
- build: linux-aarch64
os: ubuntu-22.04
ruby-version: 3.1.2
ruby-version: 3.2.1
run-tests: 'false'
target: aarch64-unknown-linux-gnu
- build: macos
os: macos-12
ruby-version: 3.1.2
ruby-version: 3.2.1
run-tests: 'true'
target: x86_64-apple-darwin
- build: windows
Expand Down
2 changes: 1 addition & 1 deletion ci/ruby-programs/ruby_forks.rb
Expand Up @@ -3,7 +3,7 @@
# rbspy's test will indicate that it's gotten a stack trace from this PID by
# creating a file on disk. Sleep until we see our file.
wait_for_ack_func = %Q(
while !File.exists?(File.join("#{coordination_path}", "rbspy_ack." + Process.pid.to_s))
while !File.exist?(File.join("#{coordination_path}", "rbspy_ack." + Process.pid.to_s))
sleep(0.25)
end
)
Expand Down

0 comments on commit a85fdb5

Please sign in to comment.