File tree Expand file tree Collapse file tree 6 files changed +22
-6
lines changed Expand file tree Collapse file tree 6 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -620,6 +620,10 @@ axes:
620
620
display_name : debian10
621
621
variables :
622
622
DOCKER_DISTRO : debian10
623
+ - id : ubuntu1804
624
+ display_name : ubuntu1804
625
+ variables :
626
+ DOCKER_DISTRO : ubuntu1804
623
627
624
628
- id : " compressor"
625
629
display_name : Compressor
Original file line number Diff line number Diff line change @@ -475,6 +475,10 @@ tasks:
475
475
commands :
476
476
- func : " export FLE credentials"
477
477
- func : " run tests"
478
+ - name : " test-fle-via-docker"
479
+ commands :
480
+ - func : " export FLE credentials"
481
+ - func : " run tests via docker"
478
482
- name : " test-aws-auth"
479
483
commands :
480
484
- func : " export AWS auth credentials"
@@ -654,6 +658,10 @@ axes:
654
658
display_name : debian10
655
659
variables :
656
660
DOCKER_DISTRO : debian10
661
+ - id : ubuntu1804
662
+ display_name : ubuntu1804
663
+ variables :
664
+ DOCKER_DISTRO : ubuntu1804
657
665
658
666
- id : " compressor"
659
667
display_name : Compressor
@@ -1277,8 +1285,6 @@ buildvariants:
1277
1285
- matrix_name : " fle-4.4"
1278
1286
matrix_spec :
1279
1287
auth-and-ssl : " noauth-and-nossl"
1280
- # https://jira.mongodb.org/browse/RUBY-2832
1281
- # ruby: [ruby-3.0, ruby-2.7, jruby-9.2]
1282
1288
ruby : [ruby-3.0, ruby-2.7]
1283
1289
topology : standalone
1284
1290
mongodb-version : ['4.4']
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ axes:
165
165
- id: docker-distro
166
166
display_name: Docker Distro
167
167
values:
168
- <% %w(debian92 debian10).each do |distro| %>
168
+ <% %w(debian92 debian10 ubuntu1804 ).each do |distro| %>
169
169
- id: <%= distro %>
170
170
display_name: <%= distro %>
171
171
variables:
Original file line number Diff line number Diff line change @@ -554,6 +554,10 @@ tasks:
554
554
commands:
555
555
- func: "export FLE credentials"
556
556
- func: "run tests"
557
+ - name: "test-fle-via-docker"
558
+ commands:
559
+ - func: "export FLE credentials"
560
+ - func: "run tests via docker"
557
561
- name: "test-aws-auth"
558
562
commands:
559
563
- func: "export AWS auth credentials"
Original file line number Diff line number Diff line change @@ -437,8 +437,6 @@ buildvariants:
437
437
- matrix_name: "fle-4.4"
438
438
matrix_spec:
439
439
auth-and-ssl: "noauth-and-nossl"
440
- # https://jira.mongodb.org/browse/RUBY-2832
441
- # ruby: [ruby-3.0, ruby-2.7, jruby-9.2]
442
440
ruby: [ruby-3.0, ruby-2.7]
443
441
topology: standalone
444
442
mongodb-version: ['4.4']
Original file line number Diff line number Diff line change 13
13
params=
14
14
for var in MONGODB_VERSION TOPOLOGY RVM_RUBY \
15
15
OCSP_ALGORITHM OCSP_STATUS OCSP_DELEGATE OCSP_MUST_STAPLE \
16
- OCSP_CONNECTIVITY OCSP_VERIFIER
16
+ OCSP_CONNECTIVITY OCSP_VERIFIER FLE
17
17
do
18
18
value=" ${! var} "
19
19
if test -n " $value " ; then
20
20
params=" $params $var =${! var} "
21
21
fi
22
22
done
23
23
24
+ if test -f .env.private; then
25
+ params=" $params -a .env.private"
26
+ fi
27
+
24
28
# OCSP verifier tests need debian10 so that ocsp mock works
25
29
./.evergreen/test-on-docker -p -d $DOCKER_DISTRO $params
You can’t perform that action at this time.
0 commit comments