Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ tests:
- as: trigger
cron: 0 6 * * *
steps:
env:
LVMS_ZSTREAM_RELEASES: 4.14,4.16,4.18,4.19,4.20,4.21
test:
- ref: lvms-zstream-trigger
zz_generated_metadata:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ set -euo pipefail
# Skips releases with no open PR or where the digest hasn't changed since
# the last run (tracked via a state file).

RELEASES="4.14,4.16,4.18,4.19,4.20,4.21"
if [[ -z "${LVMS_ZSTREAM_RELEASES:-}" ]]; then
err "LVMS_ZSTREAM_RELEASES environment variable is required"
exit 1
fi
RELEASES="${LVMS_ZSTREAM_RELEASES}"
DRY_RUN=false
FORCE=false
WORKDIR="${ARTIFACT_DIR}/zstream"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ ref:
name: cli-jq
tag: latest
commands: lvms-zstream-trigger-commands.sh
env:
- name: LVMS_ZSTREAM_RELEASES
documentation: Comma-separated list of OCP releases to check for z-stream PRs (e.g. "4.18,4.19,4.20,4.21")
resources:
requests:
cpu: 100m
Expand Down