Skip to content

Commit

Permalink
feat: dont run on stable
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Apr 24, 2023
1 parent 4f487cc commit 7b4b1c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1026,12 +1026,13 @@ jobs:
- name: Run Fluvio CLI smoke tests
if: matrix.test == 'fluvio'
uses: nick-fields/retry@v2
env:
FLUVIO_CLUSTER_RELEASE_CHANNEL: ${{ matrix.cluster_version }}
with:
timeout_minutes: 15
max_attempts: 3
command: make cli-fluvio-smoke


# test smdk
- name: Download artifact - smdk
if: matrix.test == 'smdk'
Expand Down
4 changes: 4 additions & 0 deletions tests/cli/fluvio_smoke_tests/e2e-basic.bats
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ teardown_file() {
}

@test "Consume zstd message" {
if [[ "$FLUVIO_CLUSTER_RELEASE_CHANNEL" == "stable" ]]; then
skip "don't run on stable version"
fi

run timeout 15s "$FLUVIO_BIN" consume "$TOPIC_NAME_13" -B -d

assert_output --partial "$ZSTD_MESSAGE"
Expand Down

0 comments on commit 7b4b1c9

Please sign in to comment.