-
-
Notifications
You must be signed in to change notification settings - Fork 122
55 lines (53 loc) · 1.68 KB
/
gemstash-ci.yml
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
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
gemstash_tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.2", "3.3", "jruby-9.4"]
db_adapter: ["sqlite3", "postgres", "mysql2"]
cache_type: ["memory", "memcached", "redis"]
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: gemstash_test
mysql:
image: mysql:8
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: gemstash_test
MYSQL_USER: root
MYSQL_PASSWORD: root
memcached:
image: memcached:1.6
redis:
image: redis:7
env:
GEMSTASH_SPEC_CACHE_TYPE: ${{ matrix.cache_type }}
GEMSTASH_SPEC_DB_ADAPTER: ${{ matrix.db_adapter }}
GEMSTASH_SPEC_DB_URL: ${{ (matrix.db_adapter == 'postgres' && 'postgres://postgres:postgres@localhost/gemstash_test') || (matrix.db_adapter == 'mysql2' && 'mysql2://root:root@localhost:3306/gemstash_test') }}
GEMSTASH_SPEC_REDIS_SERVERS: redis://localhost:6379
GEMSTASH_SPEC_MEMCACHED_SERVERS: localhost:11211
steps:
- uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache
- name: increase ulimit
run: ulimit -n 8192
- name: Run Tests
run: bundle exec rspec --exclude-pattern "spec/integration_spec.rb"
- name: Run Integration Tests
run: bundle exec rspec ./spec/integration_spec.rb
timeout-minutes: 60