-
-
Notifications
You must be signed in to change notification settings - Fork 105
50 lines (38 loc) · 1022 Bytes
/
test-uring.yaml
File metadata and controls
50 lines (38 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Test
on: [push, pull_request]
permissions:
contents: read
env:
CONSOLE_OUTPUT: XTerm
IO_EVENT_SELECTOR: URing
jobs:
test:
name: ${{matrix.ruby}} on ${{matrix.os}} / IO_EVENT_SELECTOR=URing
runs-on: ${{matrix.os}}-latest
strategy:
matrix:
os:
- ubuntu
ruby:
- "3.3"
- "3.4"
- "4.0"
- head
steps:
- uses: actions/checkout@v3
- name: Install packages (Ubuntu)
if: matrix.os == 'ubuntu'
run: sudo apt-get install -y liburing-dev
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
cache-version: uring
- name: Backends
run: bundle exec ruby -r"io/event" -e "puts IO::Event::Selector.constants"
- name: Run tests
timeout-minutes: 10
run: bundle exec bake test
# - name: Run external tests
# timeout-minutes: 10
# run: bundle exec bake test:external