Skip to content

Commit

Permalink
Show skip message in stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
mrodm committed Mar 13, 2024
1 parent bfe7af1 commit 8064fe9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .buildkite/pipeline.trigger.integration.tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# exit immediately on failure, or if an undefined variable is used
set -eu

echoerr() {
echo "$@" 1>&2
}

# begin the pipeline.yml file
echo "steps:"
Expand Down Expand Up @@ -74,7 +77,7 @@ pushd test/packages/parallel > /dev/null
for package in $(find . -maxdepth 1 -mindepth 1 -type d) ; do
package_name=$(basename "${package}")
if [[ "$package_name" == "aws" || "$package_name" == "aws_logs" || "$package_name" == "gcp" ]] ; then
echo "Skip temporarily ${package_name}"
echoerr "Skip temporarily ${package_name}"
continue
fi
echo " - label: \":go: Running integration test: ${package_name}\""
Expand Down

0 comments on commit 8064fe9

Please sign in to comment.