-
Notifications
You must be signed in to change notification settings - Fork 533
70 lines (70 loc) · 1.88 KB
/
test.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Run Driver Tests
on: [push, pull_request]
jobs:
build:
name: "${{matrix.os}} ruby-${{matrix.ruby}} mongodb-${{matrix.mongodb}} ${{matrix.topology}}"
env:
CI: true
TESTOPTS: "-v"
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: ["2.5", "2.6", "2.7", "3.0"]
mongodb: ["3.6", "4.4", "5.0"]
topology: [replica_set, sharded_cluster]
include:
- os: macos
ruby: "2.6"
mongodb: "5.0"
topology: server
- os: macos
ruby: "2.7"
mongodb: "5.0"
topology: server
- os: macos
ruby: "3.0"
mongodb: "5.0"
topology: server
- os: ubuntu-latest
ruby: "2.6"
mongodb: "5.0"
topology: server
- os: ubuntu-latest
ruby: "2.7"
mongodb: "5.0"
topology: server
- os: ubuntu-latest
ruby: "3.0"
mongodb: "5.0"
topology: server
- os: ubuntu-18.04
ruby: "2.5"
mongodb: "3.6"
topology: replica_set
steps:
- name: repo checkout
uses: actions/checkout@v2
with:
submodules: recursive
- id: start-mongodb
name: start mongodb
uses: mongodb-labs/drivers-evergreen-tools@master
with:
version: "${{matrix.mongodb}}"
topology: "${{matrix.topology}}"
- name: load ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{matrix.ruby}}"
bundler: 2
- name: bundle
run: bundle install --jobs 4 --retry 3
- name: test
timeout-minutes: 60
continue-on-error: true
run: bundle exec rake spec:ci
env:
MONGODB_URI: ${{ steps.start-mongodb.outputs.cluster-uri }}