-
-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (44 loc) · 1.3 KB
/
test-passenger.yaml
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
51
52
53
54
name: Test Passenger
on: [push, pull_request]
permissions:
contents: read
env:
CONSOLE_OUTPUT: XTerm
jobs:
test:
name: ${{matrix.ruby}} ${{matrix.name}}
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{matrix.gemfile}}
RACK_CONFORM_SERVER: ${{matrix.server}}
RACK_CONFORM_ENDPOINT: ${{matrix.endpoint}}
strategy:
fail-fast: false
matrix:
include:
- ruby: "3.4"
name: "Passenger-v6-Rack-v2-http"
gemfile: "gems/passenger-v6-rack-v2.rb"
server: "passenger start"
endpoint: "http://localhost:3000"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Install dependenies
run: sudo apt-get install passenger
- name: Run tests
timeout-minutes: 10
run: bundle exec bake rack:conform:server
# bundle exec bake test
- name: Run benchmarks
run: |
bundle exec ${{matrix.server}} &
bundle exec benchmark-http wait ${{matrix.endpoint}}
bundle exec benchmark-http latency ${{matrix.endpoint}}
- uses: actions/upload-artifact@v4
with:
name: R${{matrix.ruby}}-${{matrix.name}}
path: "*.log"