Skip to content

Commit 7e9afa8

Browse files
author
Pat
authored
workflows: fix release test job (#5586)
* packaging: remove tty needs Signed-off-by: Patrick Stephens <[email protected]> * workflows: update comments Signed-off-by: Patrick Stephens <[email protected]>
1 parent 7668f91 commit 7e9afa8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/staging-release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ jobs:
298298
COSIGN_EXPERIMENTAL: "true"
299299

300300
# This will require a sign off so can be done after packages are updated to confirm
301+
# Until S3 bucket is set up as release will only test what is in the server from a prior release.
302+
# TODO: https://github.com/fluent/fluent-bit/issues/5098
301303
staging-release-smoke-test:
302304
name: Run smoke tests on release artefacts
303305
permissions:

packaging/test-release-packages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ YUM_TARGETS=("centos:7"
2323
for IMAGE in "${APT_TARGETS[@]}"
2424
do
2525
echo "Testing $IMAGE"
26-
$CONTAINER_RUNTIME run --rm -it \
26+
$CONTAINER_RUNTIME run --rm -t \
2727
-e FLUENT_BIT_PACKAGES_URL="${FLUENT_BIT_PACKAGES_URL:-https://packages.fluentbit.io}" \
2828
-e FLUENT_BIT_PACKAGES_KEY="${FLUENT_BIT_PACKAGES_KEY:-https://packages.fluentbit.io/fluentbit.key}" \
2929
"$IMAGE" \
@@ -33,7 +33,7 @@ done
3333
for IMAGE in "${YUM_TARGETS[@]}"
3434
do
3535
echo "Testing $IMAGE"
36-
$CONTAINER_RUNTIME run --rm -it \
36+
$CONTAINER_RUNTIME run --rm -t \
3737
-e FLUENT_BIT_PACKAGES_URL="${FLUENT_BIT_PACKAGES_URL:-https://packages.fluentbit.io}" \
3838
-e FLUENT_BIT_PACKAGES_KEY="${FLUENT_BIT_PACKAGES_KEY:-https://packages.fluentbit.io/fluentbit.key}" \
3939
"$IMAGE" \

0 commit comments

Comments
 (0)