Skip to content

Commit 75480d6

Browse files
authored
ci: corrected test pipelines (#1606)
* ci: added docker login in validate workflow * ci: removed wasm stuff * ci: removed continue on error condition for gateway-dev image
1 parent c82f467 commit 75480d6

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.ci/lib.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ readonly DOCKER_ARGS=(
2424
-e "KONG_ADMIN_ERROR_LOG=/dev/stderr"
2525
-e "KONG_LOG_LEVEL=${KONG_LOG_LEVEL:-notice}"
2626
-e "KONG_CASSANDRA_CONTACT_POINTS=kong-database"
27-
-e "KONG_WASM_FILTERS_PATH=/filters"
28-
-e "KONG_WASM=on"
2927
)
3028

3129
waitContainer() {

.github/workflows/integration-enterprise.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ jobs:
5252
env:
5353
KONG_LICENSE_DATA: ${{ steps.license.outputs.license }}
5454
run: make setup-kong-ee
55-
continue-on-error: ${{ matrix.kong_image == 'kong/kong-gateway-dev:latest' }}
5655
- name: Run integration tests
5756
env:
5857
KONG_LICENSE_DATA: ${{ steps.license.outputs.license }}

.github/workflows/validate-kong-release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
run: |
2626
echo "Kong Gateway Image = ${{ inputs.kong_image }}"
2727
echo "decK Branch = ${{ inputs.branch }}"
28+
- name: Login to Docker Hub
29+
uses: docker/login-action@v3
30+
with:
31+
username: ${{secrets.DOCKERHUB_PULL_USERNAME}}
32+
password: ${{secrets.DOCKERHUB_PULL_TOKEN}}
2833
- name: Checkout repository
2934
uses: actions/checkout@v4
3035
with:

tests/integration/dump_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ func Test_Dump_ConsumerGroupConsumersWithCustomID_Konnect(t *testing.T) {
322322
}
323323

324324
func Test_Dump_FilterChains(t *testing.T) {
325+
t.Skip("Skipping test till wasm/filter-chains issue is not resolved at gateway level")
325326
runWhen(t, "kong", ">=3.4.0")
326327
setup(t)
327328

tests/integration/sync_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7049,6 +7049,7 @@ func Test_Sync_ConsumerGroupConsumerWithTags(t *testing.T) {
70497049
}
70507050

70517051
func Test_Sync_FilterChains(t *testing.T) {
7052+
t.Skip("Skipping test till wasm/filter-chains issue is not resolved at gateway level")
70527053
runWhen(t, "kong", ">=3.4.0")
70537054
setup(t)
70547055

@@ -7211,6 +7212,7 @@ func Test_Sync_FilterChains(t *testing.T) {
72117212
}
72127213

72137214
func Test_Sync_FilterChainsUnsupported(t *testing.T) {
7215+
t.Skip("Skipping test till wasm/filter-chains issue is not resolved at gateway level")
72147216
runWhen(t, "kong", "<3.4.0")
72157217
setup(t)
72167218
require.NoError(t, sync(context.Background(), "testdata/sync/033-filter-chains/init.yaml"))

0 commit comments

Comments
 (0)