Skip to content

Commit

Permalink
Merge branch 'master' into changelog-3.6.0-master
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito authored Mar 6, 2024
2 parents 7260976 + 7c06064 commit 8d0b373
Show file tree
Hide file tree
Showing 220 changed files with 6,855 additions and 2,680 deletions.
165 changes: 0 additions & 165 deletions .ci/run_tests.sh

This file was deleted.

41 changes: 41 additions & 0 deletions .ci/test_suites.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[
{
"name": "unit",
"exclude_tags": "flaky,ipv6",
"venv_script": "kong-dev-venv.sh",
"specs": ["spec/01-unit/"]
},
{
"name": "integration",
"exclude_tags": "flaky,ipv6,off",
"environment": {
"KONG_TEST_DATABASE": "postgres"
},
"venv_script": "kong-dev-venv.sh",
"specs": ["spec/02-integration/"]
},
{
"name": "dbless",
"exclude_tags": "flaky,ipv6,postgres,db",
"environment": {
"KONG_TEST_DATABASE": "off"
},
"venv_script": "kong-dev-venv.sh",
"specs": [
"spec/02-integration/02-cmd/",
"spec/02-integration/05-proxy/",
"spec/02-integration/04-admin_api/02-kong_routes_spec.lua",
"spec/02-integration/04-admin_api/15-off_spec.lua",
"spec/02-integration/08-status_api/01-core_routes_spec.lua",
"spec/02-integration/08-status_api/03-readiness_endpoint_spec.lua",
"spec/02-integration/11-dbless/",
"spec/02-integration/20-wasm/"
]
},
{
"name": "plugins",
"exclude_tags": "flaky,ipv6",
"venv_script": "kong-dev-venv.sh",
"specs": ["spec/03-plugins/"]
}
]
6 changes: 3 additions & 3 deletions .github/matrix-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ build-packages:
image: centos:7
package: rpm
package-type: el7
bazel-args: --//:wasmx_el7_workaround=true
bazel-args: --//:wasmx_el7_workaround=true --//:brotli=False
check-manifest-suite: el7-amd64
- label: rhel-8
image: rockylinux:8
Expand All @@ -53,7 +53,7 @@ build-packages:
- label: rhel-9-arm64
package: rpm
package-type: el9
bazel-args: --platforms=//:rhel9-crossbuild-aarch64
bazel-args: --platforms=//:rhel9-crossbuild-aarch64 --//:brotli=False
check-manifest-suite: el9-arm64

# Amazon Linux
Expand All @@ -70,7 +70,7 @@ build-packages:
- label: amazonlinux-2023-arm64
package: rpm
package-type: aws2023
bazel-args: --platforms=//:aws2023-crossbuild-aarch64
bazel-args: --platforms=//:aws2023-crossbuild-aarch64 --//:brotli=False
check-manifest-suite: amazonlinux-2023-arm64

build-images:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/autodocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4

- name: Lookup build cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-deps
with:
path: ${{ env.INSTALL_ROOT }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
ref: ${{ github.event.inputs.target_branch }}

- name: Lookup build cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-deps
with:
path: ${{ env.INSTALL_ROOT }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/checkout@v4
- name: Create backport pull requests
uses: korthout/backport-action@6e72f987c115430f6abc2fa92a74cdbf3e14b956 # v2.4.1
id: backport
with:
github_token: ${{ secrets.PAT }}
pull_title: '[backport -> ${target_branch}] ${pull_title}'
Expand All @@ -34,3 +35,8 @@ jobs:
{
"detect_merge_method": true
}
- name: add label
if: steps.backport.outputs.was_successful == 'false'
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1.1.0
with:
labels: incomplete-backport
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Lookup build cache
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.BUILD_ROOT }}
key: ${{ steps.cache-key.outputs.cache-key }}
Expand Down
Loading

0 comments on commit 8d0b373

Please sign in to comment.