Skip to content

Commit

Permalink
ci(github): Run Docker as the GitHub user to simplify code
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Apr 23, 2024
1 parent 3d27d61 commit 58522f7
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,22 +146,16 @@ jobs:
gradle-home-cache-cleanup: true
- name: Run functional tests that do require external tools
run: |
# Change the ownership of the Gradle user home and the workspace to the user in the Docker container.
sudo chown -R 1000:1000 /home/runner/.gradle
sudo chown -R 1000:1000 ${{ github.workspace }}
# Run the functional tests in the Docker container.
docker run \
-u $(id -u):$(id -g) \
-v /home/runner:/home/runner \
-v ${{ github.workspace }}:/workspace \
-v /home/runner/.gradle:/home/ort/.gradle \
-w /workspace \
--entrypoint=/bin/sh \
-e HOME=/home/runner \
-e GRADLE_USER_HOME=/home/runner/.gradle \
${{ env.TEST_IMAGE_TAG }} \
-c "GRADLE_USER_HOME=/home/ort/.gradle ./gradlew --scan -Ptests.include=org.ossreviewtoolkit.plugins.packagemanagers.* funTest jacocoFunTestReport"
# Change the ownership of the Gradle user home and the workspace back to the user in the GitHub Actions runner.
sudo chown -R 1001:121 /home/runner/.gradle
sudo chown -R 1001:121 ${{ github.workspace }}
-c "./gradlew --scan -Ptests.include=org.ossreviewtoolkit.plugins.packagemanagers.* funTest jacocoFunTestReport"
- name: Upload code coverage data
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 58522f7

Please sign in to comment.