Skip to content

Commit

Permalink
specific_docker_tag (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
oeqqwq authored Mar 26, 2024
1 parent 6ea42f5 commit 36a6d87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/release-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ parameters:
executors:
linux_x64_executor: # declares a reusable executor
docker:
- image: secretflow/release-ci:latest
- image: secretflow/release-ci:20240206
resource_class: 2xlarge+
shell: /bin/bash --login -eo pipefail
linux_aarch64_executor:
docker:
- image: secretflow/release-ci-aarch64:latest
- image: secretflow/release-ci-aarch64:20240206
resource_class: arm.2xlarge
shell: /bin/bash --login -eo pipefail
macos_arm64_executor:
Expand Down
4 changes: 2 additions & 2 deletions docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ HOST_PLATFORM=""
RELEASE_IMAGE=""
if [ "$MACHINE_TYPE" == "x86_64" ]; then
HOST_PLATFORM=linux/amd64
RELEASE_IMAGE=secretflow/release-ci:latest
RELEASE_IMAGE=secretflow/release-ci:20240206
else
HOST_PLATFORM=linux/arm64
RELEASE_IMAGE=secretflow/release-ci-aarch64:latest
RELEASE_IMAGE=secretflow/release-ci-aarch64:20240206
fi

CODE_PATH=$(cd "$(dirname "$0")" && cd .. && pwd)
Expand Down

0 comments on commit 36a6d87

Please sign in to comment.