@@ -13,8 +13,6 @@ command_type: system
13
13
# Protect ourself against rogue test case, or curl gone wild, that runs forever.
14
14
exec_timeout_secs: 3600
15
15
16
- <% egos_wrap = "./egos stdbuf -i0 -o0 -e0" %>
17
-
18
16
# What to do when evergreen hits the timeout (`post:` tasks are run automatically)
19
17
timeout:
20
18
- command: shell.exec
@@ -36,20 +34,6 @@ functions:
36
34
37
35
git submodule update --init --recursive
38
36
39
- "fetch egos":
40
- - command: shell.exec
41
- params:
42
- working_dir: "src"
43
- script: |
44
- set -e
45
-
46
- # Python version:
47
- #curl -sfLo egos https://raw.githubusercontent.com/p-mongo/egos/master/egos
48
-
49
- # C version:
50
- curl --retry 3 -sfLo egos.c https://raw.githubusercontent.com/p-mongo/egos/master/egos.c
51
- gcc -O2 -g -oegos -lrt egos.c
52
-
53
37
"create expansions":
54
38
# Make an evergreen expansion file with dynamic values
55
39
- command: shell.exec
@@ -381,7 +365,7 @@ functions:
381
365
script: |
382
366
${PREPARE_SHELL}
383
367
set -x
384
- <%= egos_wrap %> .evergreen/test-on-docker -d ${os} MONGODB_VERSION=${mongodb-version} TOPOLOGY=${topology} RVM_RUBY=${ruby} -s .evergreen/run-tests.sh TEST_CMD=true ${PRELOAD_ARG}
368
+ .evergreen/test-on-docker -d ${os} MONGODB_VERSION=${mongodb-version} TOPOLOGY=${topology} RVM_RUBY=${ruby} -s .evergreen/run-tests.sh TEST_CMD=true ${PRELOAD_ARG}
385
369
386
370
"run tests":
387
371
- command: shell.exec
@@ -391,7 +375,7 @@ functions:
391
375
working_dir: "src"
392
376
script: |
393
377
${PREPARE_SHELL}
394
- <%= egos_wrap %> .evergreen/run-tests.sh
378
+ .evergreen/run-tests.sh
395
379
396
380
"run tests via docker":
397
381
- command: shell.exec
@@ -401,7 +385,7 @@ functions:
401
385
working_dir: "src"
402
386
script: |
403
387
${PREPARE_SHELL}
404
- <%= egos_wrap %> .evergreen/run-tests-docker.sh
388
+ .evergreen/run-tests-docker.sh
405
389
406
390
"run AWS auth tests":
407
391
- command: shell.exec
@@ -411,7 +395,7 @@ functions:
411
395
working_dir: "src"
412
396
script: |
413
397
${PREPARE_SHELL}
414
- <%= egos_wrap %> .evergreen/run-tests-aws-auth.sh
398
+ .evergreen/run-tests-aws-auth.sh
415
399
416
400
"run Kerberos unit tests":
417
401
- command: shell.exec
@@ -421,7 +405,7 @@ functions:
421
405
working_dir: "src"
422
406
script: |
423
407
${PREPARE_SHELL}
424
- <%= egos_wrap %> .evergreen/run-tests-kerberos-unit.sh
408
+ .evergreen/run-tests-kerberos-unit.sh
425
409
426
410
"run Kerberos integration tests":
427
411
- command: shell.exec
@@ -431,7 +415,7 @@ functions:
431
415
working_dir: "src"
432
416
script: |
433
417
${PREPARE_SHELL}
434
- <%= egos_wrap %> .evergreen/run-tests-kerberos-integration.sh
418
+ .evergreen/run-tests-kerberos-integration.sh
435
419
436
420
"run Atlas tests":
437
421
- command: shell.exec
@@ -470,7 +454,6 @@ functions:
470
454
471
455
pre:
472
456
- func: "fetch source"
473
- - func: "fetch egos"
474
457
- func: "create expansions"
475
458
476
459
post:
0 commit comments