Skip to content

Commit

Permalink
chore(ci): Skip humio integration tests in CI (#22016)
Browse files Browse the repository at this point in the history
The humio/humio image these depend on was archived and the new humio/humio-single-node-demo image
requires a license key that we don't have.

We will follow up on this to make a decision about what to do.

Signed-off-by: Jesse Szwedko <[email protected]>
  • Loading branch information
jszwedko authored Dec 11, 2024
1 parent b6a59c7 commit 0b801eb
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
|| needs.changes.outputs.fluent == 'true'
|| needs.changes.outputs.gcp == 'true'
|| needs.changes.outputs.greptimedb == 'true'
|| needs.changes.outputs.humio == 'true'
#|| needs.changes.outputs.humio == 'true'
|| needs.changes.outputs.http-client == 'true'
|| needs.changes.outputs.influxdb == 'true'
|| needs.changes.outputs.kafka == 'true'
Expand Down Expand Up @@ -298,15 +298,17 @@ jobs:
max_attempts: 3
command: bash scripts/ci-int-e2e-test.sh int greptimedb

- run: docker image prune -af --filter=label!=vector-test-runner=true ; docker container prune -f

- if: ${{ github.event_name == 'merge_group' || needs.changes.outputs.all-int == 'true' || needs.changes.outputs.humio == 'true' }}
name: humio
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: bash scripts/ci-int-e2e-test.sh int humio
# temporarily disabled because the image was archived and the new image
# (humio/humio-single-node-demo) wants a license key
#- run: docker image prune -af --filter=label!=vector-test-runner=true ; docker container prune -f
#
#- if: ${{ github.event_name == 'merge_group' || needs.changes.outputs.all-int == 'true' || needs.changes.outputs.humio == 'true' }}
#name: humio
#uses: nick-fields/retry@v3
#with:
#timeout_minutes: 30
#max_attempts: 3
#command: bash scripts/ci-int-e2e-test.sh int humio

- run: docker image prune -af --filter=label!=vector-test-runner=true ; docker container prune -f

Expand Down

0 comments on commit 0b801eb

Please sign in to comment.