Files
2026-07-13 12:32:21 +08:00

58 lines
1.5 KiB
YAML

name: Upgrade Tests
on:
pull_request:
paths:
- 'scripts/upgrade-tests/**'
- 'kong/db/migrations/**'
- 'spec/05-migration/**'
- 'kong/enterprise_edition/db/migrations/**'
- '.github/workflows/upgrade-tests.yml'
- 'kong/plugins/*/migrations/**'
- 'plugins-ee/**/migrations/**'
push:
paths-ignore:
# ignore markdown files (CHANGELOG.md, README.md, etc.)
- '**/*.md'
branches:
- master
- release/*
- test-please/*
workflow_dispatch:
# cancel previous runs if new commits are pushed to the PR, but run for each commit on master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
GH_TOKEN: ${{ github.token }}
BUILD_ROOT: ${{ github.workspace }}/bazel-bin/build
jobs:
build:
uses: ./.github/workflows/build.yml
with:
relative-build-root: bazel-bin/build
upgrade-test:
name: Run migration tests
runs-on: ubuntu-22.04
needs: build
steps:
- name: Clone Source Code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
submodules: recursive
- name: Lookup build cache
id: cache-deps
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ${{ env.BUILD_ROOT }}
key: ${{ needs.build.outputs.cache-key }}
- name: Run Upgrade Tests
run: |
bash ./scripts/upgrade-tests/test-upgrade-path.sh -i ${{ env.BUILD_ROOT }}/kong-dev-venv.sh