Skip to content

Commit

Permalink
fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Nov 10, 2024
1 parent c4b1067 commit db9003d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-edt-k8s-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
#Если версия EDT >= 2024.1.0, использовать JDK 17
if [[ "$(printf "%s\n" "$EDT_VERSION" "2024" | sort -V | head -n 1)" == "2024" ]]; then
BASE_IMAGE="azul/zulu-openjdk"
BASE_TAG="17.0.13-jdk"
BASE_TAG="17"
else
BASE_IMAGE="eclipse-temurin"
BASE_TAG="11"
Expand Down
2 changes: 1 addition & 1 deletion build-edt-swarm-agent.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if %ERRORLEVEL% neq 0 goto end
for /f "delims=." %%a in ("%EDT_VERSION%") do set EDT_MAJOR_VERSION=%aa
if %EDT_MAJOR_VERSION% GEQ "2024" (
set BASE_IMAGE="azul/zulu-openjdk"
set BASE_TAG="17.0.13-jdk"
set BASE_TAG="17"
) else (
set BASE_IMAGE="eclipse-temurin"
set BASE_TAG="11"
Expand Down
2 changes: 1 addition & 1 deletion build-edt-swarm-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
#Если версия EDT >= 2024.1.0, использовать JDK 17
if [[ "$(printf "%s\n" "$EDT_VERSION" "2024" | sort -V | head -n 1)" == "2024" ]]; then
BASE_IMAGE="azul/zulu-openjdk"
BASE_TAG="17.0.13-jdk"
BASE_TAG="17"
else
BASE_IMAGE="eclipse-temurin"
BASE_TAG="11"
Expand Down

0 comments on commit db9003d

Please sign in to comment.