From c8d0f5b3ce07faee28ecac64e5855102faa819aa Mon Sep 17 00:00:00 2001 From: Diego Tavares Date: Wed, 25 Sep 2024 18:06:38 -0700 Subject: [PATCH] Test upgrading jdk --- .github/workflows/testing-pipeline.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/testing-pipeline.yml b/.github/workflows/testing-pipeline.yml index 21c8a171f..c17269792 100644 --- a/.github/workflows/testing-pipeline.yml +++ b/.github/workflows/testing-pipeline.yml @@ -153,6 +153,10 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | + sudo yum -y install java-17-openjdk.x86_64 + sudo alternatives --set java java-17-openjdk.x86_64 + sudo alternatives --set javac java-17-openjdk.x86_64 + sudo alternatives --set jre_openjdk java-17-openjdk.x86_64 chown -R aswfuser:aswfgroup . su -c "cd cuebot && ./gradlew jacocoTestReport sonar -Dsonar.login=$(SONAR_TOKEN)" aswfuser