From 03733ed7df6cb73b8ab8b1c8144e956c5210560c Mon Sep 17 00:00:00 2001 From: "Jalpreet Singh Nanda (:imjalpreet)" Date: Wed, 8 Jan 2025 18:16:07 +0530 Subject: [PATCH] Fix #24327: Create a symlink for libaio.so.1 to run test-other-modules --- .github/workflows/test-other-modules.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-other-modules.yml b/.github/workflows/test-other-modules.yml index 3c3f84817a0d1..7b5ba858bdc4d 100644 --- a/.github/workflows/test-other-modules.yml +++ b/.github/workflows/test-other-modules.yml @@ -53,6 +53,9 @@ jobs: key: ${{ runner.os }}-maven-2-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven-2- + # Workaround for Ubuntu 24 and mysql to find the dependent library (https://github.com/prestodb/presto/issues/24327) + - name: Create symlink for libaio.so.1 + run: sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/x86_64-linux-gnu/libaio.so.1 - name: Populate maven cache if: steps.cache-maven.outputs.cache-hit != 'true' run: ./mvnw de.qaware.maven:go-offline-maven-plugin:resolve-dependencies --no-transfer-progress && .github/bin/download_nodejs