diff --git a/.github/workflows/testing-pipeline.yml b/.github/workflows/testing-pipeline.yml index 21c8a171f..5df985b22 100644 --- a/.github/workflows/testing-pipeline.yml +++ b/.github/workflows/testing-pipeline.yml @@ -153,6 +153,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | + sudo yum -y install java-17-openjdk.x86_64 + sudo yum -y install java-17-openjdk-devel.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 + su -c "cd cuebot && ./gradlew jacocoTestReport sonar -Dsonar.token=${SONAR_TOKEN}" aswfuser