Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .evergreen/config/functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,17 @@ functions:
- command: shell.exec
params:
script: |
VARIANT=${VARIANT} DRIVERS_TOOLS="${DRIVERS_TOOLS}" sh ${DRIVERS_TOOLS}/.evergreen/atlas_data_lake/build-mongohouse-local.sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The VARIANT variable is not necessary, or is it exported?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was necessary to compile on the correct platform. It's no longer necessary so we can do without :)

cd ${DRIVERS_TOOLS}/.evergreen/atlas_data_lake

DRIVERS_TOOLS="${DRIVERS_TOOLS}" \
bash pull-mongohouse-image.sh
- command: shell.exec
params:
background: true
script: |
DRIVERS_TOOLS="${DRIVERS_TOOLS}" sh ${DRIVERS_TOOLS}/.evergreen/atlas_data_lake/run-mongohouse-local.sh
cd ${DRIVERS_TOOLS}/.evergreen/atlas_data_lake

DRIVERS_TOOLS="${DRIVERS_TOOLS}" \
bash run-mongohouse-image.sh

"create serverless instance":
- command: shell.exec
Expand Down
15 changes: 15 additions & 0 deletions .evergreen/config/test-variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,18 @@ buildvariants:
name: "build-php-8.2"
tasks:
- "run-benchmark"

# Run Atlas Data Lake Tests on Ubuntu
- name: test-ubuntu2204-php82-local
tags: ["test", "ubuntu", "x64"]
display_name: "Test: Ubuntu 22.04 x64, PHP 8.2"
run_on: ubuntu2204-small
expansions:
FETCH_BUILD_VARIANT: "build-ubuntu2204"
FETCH_BUILD_TASK: "build-php-8.2"
PHP_VERSION: "8.2"
depends_on:
- variant: "build-ubuntu2204"
name: "build-php-8.2"
tasks:
- "test-atlas-data-lake"