Skip to content

Unit Tests (Integrations) - 10998280162 - @vapopov #62047

Unit Tests (Integrations) - 10998280162 - @vapopov

Unit Tests (Integrations) - 10998280162 - @vapopov #62047

name: Unit Tests (Integrations)
run-name: Unit Tests (Integrations) - ${{ github.run_id }} - @${{ github.actor }}
on:
pull_request:
merge_group:
jobs:
changes:
name: Check for relevant changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
changed: ${{ steps.changes.outputs.changed }}
steps:
- name: Checkout
if: ${{ github.event_name == 'merge_group' }}
uses: actions/checkout@v4
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
id: changes
with:
base: ${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref }}
ref: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }}
filters: |
changed:
- 'go.mod'
- 'go.sum'
- 'integrations/**'
- 'api/proto/**'
- 'proto/**'
- 'api/types/**'
- 'gen/**'
- 'lib/tbot/**'
- 'Makefile'
- '.github/workflows/unit-tests-integrations.yaml'
- 'build.assets/Makefile'
- 'build.assets/Dockerfile*'
test:
name: Unit Tests (Integrations)
needs: changes
if: ${{ !startsWith(github.head_ref, 'dependabot/') && needs.changes.outputs.changed == 'true' }}
runs-on: ubuntu-22.04-16core
permissions:
contents: read
container:
image: ghcr.io/gravitational/teleport-buildbox:teleport15
options: --cap-add=SYS_ADMIN --privileged
steps:
- name: Checkout Teleport
uses: actions/checkout@v4
- name: Prepare workspace
uses: ./.github/actions/prepare-workspace
- name: Build teleport binaries
run: make build/tctl build/teleport build/tsh && echo "$PWD/build" >> "$GITHUB_PATH"
- name: Run access plugin tests
run: make test-access-integrations
timeout-minutes: 5
- name: Run integrations lib tests
run: make test-integrations-lib
timeout-minutes: 5
- name: Run terraform provider OSS tests
run: make test-terraform-provider
timeout-minutes: 15
- name: Run integrations event-handler tests
run: make test-event-handler-integrations
timeout-minutes: 10
- name: Run operator tests
timeout-minutes: 40
run: make test-operator
- name: Run kube-agent-updater tests
timeout-minutes: 15
run: make test-kube-agent-updater
- name: Run teleport-usage tests
timeout-minutes: 15
run: make test-teleport-usage