fix: release superseded S1/NG connection on re-establishment #5855
This file contains hidden or 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: Main workflow | |
| permissions: | |
| contents: read | |
| packages: write | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| ui-lint: | |
| uses: ./.github/workflows/ui-lint.yaml | |
| ui-typecheck: | |
| uses: ./.github/workflows/ui-typecheck.yaml | |
| ui-test: | |
| uses: ./.github/workflows/ui-test.yaml | |
| go-unit-test: | |
| uses: ./.github/workflows/go-unittest.yaml | |
| upf-ebpf-test: | |
| uses: ./.github/workflows/upf-ebpf-tests.yaml | |
| go-race-detection-test: | |
| uses: ./.github/workflows/go-racedetect.yaml | |
| go-vet: | |
| uses: ./.github/workflows/go-vet.yaml | |
| go-lint: | |
| uses: ./.github/workflows/go-lint.yaml | |
| go-sec: | |
| uses: ./.github/workflows/go-sec.yaml | |
| clang-format: | |
| uses: ./.github/workflows/clang-format.yaml | |
| clang-tidy: | |
| uses: ./.github/workflows/clang-tidy.yaml | |
| license-headers: | |
| uses: ./.github/workflows/license-headers.yaml | |
| image-build: | |
| needs: [go-unit-test, go-vet, go-lint] | |
| uses: ./.github/workflows/image-build.yaml | |
| image-build-tester: | |
| needs: [go-unit-test, go-vet, go-lint] | |
| uses: ./.github/workflows/image-build-tester.yaml | |
| integration-tests-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-4g.yaml | |
| integration-tests-4g-srsran: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-4g-srsran.yaml | |
| integration-tests-5g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-5g.yaml | |
| integration-tests-api-matrix: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-api-matrix.yaml | |
| integration-tests-ha: | |
| needs: [image-build] | |
| uses: ./.github/workflows/integration-tests-ha.yaml | |
| integration-tests-api-matrix-ha: | |
| needs: [image-build] | |
| uses: ./.github/workflows/integration-tests-api-matrix-ha.yaml | |
| integration-tests-ha-5g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-ha-5g.yaml | |
| integration-tests-ha-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-ha-4g.yaml | |
| integration-tests-bgp-5g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-bgp-5g.yaml | |
| integration-tests-bgp-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-bgp-4g.yaml | |
| integration-tests-framed-5g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-framed-5g.yaml | |
| integration-tests-framed-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-framed-4g.yaml | |
| integration-tests-n2-handover: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-n2-handover.yaml | |
| integration-tests-x2-handover-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-x2-handover-4g.yaml | |
| integration-tests-s1-handover-4g: | |
| needs: [image-build, image-build-tester] | |
| uses: ./.github/workflows/integration-tests-s1-handover-4g.yaml | |
| integration-tests-rolling-upgrade: | |
| needs: [image-build] | |
| uses: ./.github/workflows/integration-tests-rolling-upgrade.yaml |