forked from open-telemetry/opentelemetry-ruby-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
163 lines (158 loc) · 6.04 KB
/
ci-instrumentation-full.yml
File metadata and controls
163 lines (158 loc) · 6.04 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: CI Instrumentation Full
on:
workflow_dispatch:
push:
branches:
- main
paths: &path_filters
- 'helpers/**'
- 'instrumentation/action_mailer/**'
- 'instrumentation/action_pack/**'
- 'instrumentation/action_view/**'
- 'instrumentation/active_job/**'
- 'instrumentation/active_model_serializers/**'
- 'instrumentation/active_record/**'
- 'instrumentation/active_storage/**'
- 'instrumentation/active_support/**'
- 'instrumentation/anthropic/**'
- 'instrumentation/aws_sdk/**'
- 'instrumentation/aws_lambda/**'
- 'instrumentation/base/**'
- 'instrumentation/concurrent_ruby/**'
- 'instrumentation/delayed_job/**'
- 'instrumentation/ethon/**'
- 'instrumentation/excon/**'
- 'instrumentation/factory_bot/**'
- 'instrumentation/faraday/**'
- 'instrumentation/grape/**'
- 'instrumentation/graphql/**'
- 'instrumentation/grpc/**'
- 'instrumentation/gruf/**'
- 'instrumentation/http/**'
- 'instrumentation/http_client/**'
- 'instrumentation/httpx/**'
- 'instrumentation/koala/**'
- 'instrumentation/lmdb/**'
- 'instrumentation/logger/**'
- 'instrumentation/net_http/**'
- 'instrumentation/rack/**'
- 'instrumentation/rage/**'
- 'instrumentation/rails/**'
- 'instrumentation/restclient/**'
- 'instrumentation/rspec/**'
- 'instrumentation/sinatra/**'
- '.github/workflows/ci-instrumentation-full.yml'
- '.github/actions/**'
- 'Gemfile'
- 'Rakefile'
- '.rubocop.yml'
- 'gemspecs/**'
pull_request:
branches:
- main
paths: *path_filters
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} # Ensure that only one instance of this workflow is running per Pull Request
cancel-in-progress: true # Cancel any previous runs of this workflow
jobs:
instrumentation:
strategy:
fail-fast: false
matrix:
gem:
- action_mailer
- action_pack
- action_view
- active_job
- active_model_serializers
- active_record
- active_storage
- active_support
- anthropic
- aws_sdk
- aws_lambda
- base
- concurrent_ruby
- delayed_job
- ethon
- excon
- factory_bot
- faraday
- grape
- graphql
- grpc
- gruf
- http
- http_client
- httpx
- koala
- lmdb
- logger
- net_http
- rack
- rage
- rails
- restclient
- rspec
- sinatra
os:
- ubuntu-latest
name: ${{ matrix.gem }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: "Test Ruby 3.4"
uses: ./.github/actions/test_gem
with:
gem: "opentelemetry-instrumentation-${{ matrix.gem }}"
ruby: "3.4"
- name: "Test Ruby 3.3"
uses: ./.github/actions/test_gem
with:
gem: "opentelemetry-instrumentation-${{ matrix.gem }}"
ruby: "3.3"
- name: "Test Ruby 3.2"
uses: ./.github/actions/test_gem
with:
gem: "opentelemetry-instrumentation-${{ matrix.gem }}"
ruby: "3.2"
yard: true
rubocop: true
coverage: true
build: true
- name: "JRuby Filter"
id: jruby_skip
shell: bash
run: |
echo "skip=false" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "action_pack" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "action_view" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "active_model_serializers" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "active_record" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "active_storage" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "active_support" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "aws_sdk" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "aws_lambda" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "delayed_job" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "graphql" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "http" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "http_client" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "koala" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "lmdb" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "rack" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "rage" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "rails" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "grpc" ]] && echo "skip=true" >> $GITHUB_OUTPUT
[[ "${{ matrix.gem }}" == "gruf" ]] && echo "skip=true" >> $GITHUB_OUTPUT
# This is essentially a bash script getting evaluated, so we need to return true or the whole job fails.
true
- name: "Test JRuby"
if: "${{ matrix.os == 'ubuntu-latest' && steps.jruby_skip.outputs.skip == 'false' }}"
uses: ./.github/actions/test_gem
with:
gem: "opentelemetry-instrumentation-${{ matrix.gem }}"
ruby: "jruby-10.0.2.0"