feat: drop resp body from ReloadDeclarativeRawConfig signature #624
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Integration Test : Enterprise Nightly' | |
concurrency: | |
# Run only for most recent commit in PRs but for all tags and commits on main | |
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
secret-available: | |
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} | |
outputs: | |
ok: ${{ steps.exists.outputs.ok }} | |
runs-on: ubuntu-latest | |
env: | |
PULP_PASSWORD: ${{ secrets.PULP_PASSWORD }} | |
steps: | |
- name: check for secret availability | |
id: exists | |
run: | | |
if [ ! -z "$PULP_PASSWORD" ]; then | |
echo "ok=true" >> $GITHUB_OUTPUT | |
fi | |
test-enterprise: | |
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} | |
strategy: | |
matrix: | |
router_flavor: | |
- 'traditional_compatible' | |
- 'expressions' | |
continue-on-error: true | |
needs: | |
- secret-available | |
if: needs.secret-available.outputs.ok | |
env: | |
KONG_ROUTER_FLAVOR: ${{ matrix.router_flavor }} | |
KONG_ADMIN_TOKEN: kong | |
KONG_IMAGE_REPO: "kong/kong-gateway-internal" | |
KONG_IMAGE_TAG: "master" | |
KONG_ANONYMOUS_REPORTS: "off" | |
TEST_KONG_PULL_USERNAME: ${{ secrets.GHA_DOCKERHUB_PULL_USER }} | |
TEST_KONG_PULL_PASSWORD: ${{ secrets.GHA_KONG_ORG_DOCKERHUB_PUBLIC_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
# This will set KONG_LINCENSE_DATA environment variable. | |
- uses: Kong/kong-license@master | |
id: license_step | |
with: | |
password: ${{ secrets.PULP_PASSWORD }} | |
op-token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Setup Kong | |
run: make setup-kong-ee | |
- name: Run tests | |
run: make test-coverage-enterprise | |
- name: Upload Code Coverage | |
uses: codecov/[email protected] | |
continue-on-error: true | |
with: | |
name: codecov-enterprise-nightly | |
flags: enterprise-nightly,integration,enterprise | |
fail_ci_if_error: true |