Skip to content

Commit

Permalink
Use openjdk:21-jdk-oraclelinux7, and use "docker action" step rather …
Browse files Browse the repository at this point in the history
…than "run docker"
  • Loading branch information
mjameswh committed Nov 27, 2024
1 parent 97c2b78 commit b3339b8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,10 @@ jobs:
- name: Build native test server (Docker)
if: matrix.os_family == 'Linux'
run: |
docker run \
--rm -v "$(pwd):/workspace" -w /workspace \
ghcr.io/graalvm/graalvm-community:21-ol7 \
sh -c '
yum install -y git && \
./gradlew -x :temporal-serviceclient:updateSubmodules :temporal-test-server:build
'
uses: docker://openjdk:21-jdk-oraclelinux7
with:
args: |
sh -c 'yum install -y git && ./gradlew -x :temporal-serviceclient:updateSubmodules :temporal-test-server:build'
# path ends in a wildcard because on windows the file ends in '.exe'
# path excludes *.txt because native-image also writes a build manifest txt file
Expand Down

0 comments on commit b3339b8

Please sign in to comment.