From 4c7a5cfa839398404e6261fddf2ed4f098fa144d Mon Sep 17 00:00:00 2001 From: Gagan Juneja Date: Mon, 23 Sep 2024 14:18:40 +0530 Subject: [PATCH] Fixes failing docker issue (#733) Signed-off-by: Gagan Juneja Co-authored-by: Gagan Juneja (cherry picked from commit ca521d5206d52bc926947b4a9dbfa7f3b0c1d998) --- .github/workflows/gradle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index a426d86b..c3562219 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -31,7 +31,7 @@ jobs: # Explicitly set the docker-compose program path so that our build scripts in RCA can run the program # This is necessary because of the Github Actions environment and the workingDir of the Gradle environment - name: Set docker-compose path - run: DOCKER_COMPOSE_LOCATION=$(which docker-compose) + run: echo "DOCKER_COMPOSE_LOCATION=$(which docker-compose)" >> $GITHUB_ENV # Set the vm.max_map_count system property to the minimum required to run OpenSearch - name: Set vm.max_map_count run: sudo sysctl -w vm.max_map_count=262144