Skip to content

Commit fd1364e

Browse files
authored
[Serverless-Init] Build serverless-init with zstd enabled (#878)
1 parent e0ec3bc commit fd1364e

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/release-serverless-init.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
buildTags:
77
type: choice
88
description: Build tags
9-
default: "serverless otlp"
9+
default: "serverless otlp zlib zstd"
1010
options:
11-
- "serverless otlp"
12-
- "serverless"
11+
- "serverless otlp zlib zstd"
12+
- "serverless zlib zstd"
1313
tag:
1414
type: string
1515
description: Docker image tag name, eg. (beta11, beta12-rc1, etc.)

scripts/build_binary_and_layer_dockerized.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ else
2626
fi
2727

2828
if [ -z "$BUILD_TAGS" ]; then
29-
BUILD_TAGS="serverless otlp"
29+
if [ -z "$SERVERLESS_INIT" ]; then
30+
BUILD_TAGS="serverless otlp"
31+
else
32+
BUILD_TAGS="serverless otlp zlib zstd"
33+
fi
3034
fi
3135

3236
if [ -z "$AGENT_PATH" ]; then

0 commit comments

Comments
 (0)