File tree Expand file tree Collapse file tree 5 files changed +22
-2
lines changed Expand file tree Collapse file tree 5 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -630,6 +630,10 @@ axes:
630
630
display_name : debian10
631
631
variables :
632
632
DOCKER_DISTRO : debian10
633
+ - id : ubuntu1804
634
+ display_name : ubuntu1804
635
+ variables :
636
+ DOCKER_DISTRO : ubuntu1804
633
637
634
638
- id : " compressor"
635
639
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"
@@ -664,6 +668,10 @@ axes:
664
668
display_name : debian10
665
669
variables :
666
670
DOCKER_DISTRO : debian10
671
+ - id : ubuntu1804
672
+ display_name : ubuntu1804
673
+ variables :
674
+ DOCKER_DISTRO : ubuntu1804
667
675
668
676
- id : " compressor"
669
677
display_name : Compressor
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ axes:
175
175
- id: docker-distro
176
176
display_name: Docker Distro
177
177
values:
178
- <% %w(debian92 debian10).each do |distro| %>
178
+ <% %w(debian92 debian10 ubuntu1804 ).each do |distro| %>
179
179
- id: <%= distro %>
180
180
display_name: <%= distro %>
181
181
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 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