Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Otel change span structure #448

Open
wants to merge 19 commits into
base: otel-migration
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 4 additions & 48 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,6 @@ library_gemfile: &library_gemfile
- "./gemfiles/mongo_216.gemfile"
- "./gemfiles/mongo_219.gemfile"
executors:
ruby_30:
docker:
- image: cimg/ruby:3.0-node
environment:
MEMCACHED_HOST: '127.0.0.1:11211'
REDIS_URL: 'redis://127.0.0.1:6379'
DATABASE_URL: 'sqlite3::memory:'
- image: memcached
- image: redis
- image: amazon/dynamodb-local
- image: minio/minio:latest
command: ["server", "/data"]
- image: s12v/sns
- image: softwaremill/elasticmq-native
- image: mongo:5-focal
ruby_30_mysql2:
docker:
- image: cimg/ruby:3.0-node
environment:
DATABASE_URL: "mysql2://[email protected]:3306/ci_test"
- image: mariadb
environment:
MYSQL_DATABASE: 'ci_test'
MYSQL_USER: 'root'
MYSQL_PASSWORD: ''
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_ROOT_PASSWORD: ''
MYSQL_ROOT_HOST: '%'
ruby_30_postgres:
docker:
- image: cimg/ruby:3.0-node
environment:
DATABASE_URL: "postgres://postgres:[email protected]:5432/ci_test"
- image: postgres
environment:
POSTGRES_PASSWORD: 'test'
POSTGRES_DB: 'ci_test'
ruby_31:
docker:
- image: cimg/ruby:3.1-node
Expand Down Expand Up @@ -323,7 +286,7 @@ jobs:
parameters:
stack:
type: executor
default: ruby_30
default: ruby_31
executor: << parameters.stack >>
steps:
- checkout
Expand All @@ -333,7 +296,7 @@ jobs:
parameters:
stack:
type: executor
default: ruby_30
default: ruby_31
gemfile:
type: string
default: "./gemfiles/aws_30.gemfile"
Expand Down Expand Up @@ -384,18 +347,16 @@ workflows:
matrix:
parameters:
stack:
- ruby_30
- ruby_31
- ruby_32
- ruby_33
- ruby_34
libraries_ruby_30_32:
libraries_ruby_31_32:
jobs:
- test_apprisal:
matrix:
parameters:
stack:
- ruby_30
- ruby_31
- ruby_32
<<: *library_gemfile
Expand All @@ -418,15 +379,12 @@ workflows:
exclude:
- stack: ruby_34
gemfile: "./gemfiles/grpc_10.gemfile"
rails_ruby_3:
rails_ruby_31_34:
jobs:
- test_apprisal:
matrix:
parameters:
stack:
- ruby_30
- ruby_30_postgres
- ruby_30_mysql2
- ruby_31
- ruby_31_postgres
- ruby_31_mysql2
Expand Down Expand Up @@ -466,8 +424,6 @@ workflows:
matrix:
parameters:
stack:
- ruby_30
- ruby_30_mysql2
- ruby_31
- ruby_31_mysql2
- ruby_32
Expand Down
Loading