Skip to content

Commit

Permalink
Add HFL support for Google Cloud TDX (#259)
Browse files Browse the repository at this point in the history
* Add HFL support for Google Cloud TDX

* Update tdx-hfl.md
  • Loading branch information
shui1 authored Nov 28, 2023
1 parent c302d2f commit 5952d7a
Show file tree
Hide file tree
Showing 6 changed files with 9,018 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cczoo/horizontal_fl_tdx/build_docker_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -e
function usage() {
echo -e "Usage: $0 BUILDTYPE [TAG]"
echo -e " BUILDTYPE build type;"
echo -e " BUILDTYPE is 'azure' or 'default'"
echo -e " BUILDTYPE is 'azure','gcp', or 'default'"
echo -e " TAG docker tag suffix;"
echo -e " docker tag is BUILDTYPE_TAG;"
echo -e " TAG default is 'latest'"
Expand All @@ -32,7 +32,7 @@ if [ "$#" -lt 1 ]; then
fi

build_type=$1
if [ "$1" != "azure" ] && [ "$1" != "default" ]; then
if [ "$1" != "azure" ] && [ "$1" != "gcp" ] && [ "$1" != "default" ]; then
usage
exit 1
fi
Expand Down
Loading

0 comments on commit 5952d7a

Please sign in to comment.