Integration Tests (Root) - 29889086168 - @juliaogris #167778
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: Integration Tests (Root) | |
| run-name: Integration Tests (Root) - ${{ github.run_id }} - @${{ github.actor }} | |
| on: | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_sha || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| 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@v6 | |
| - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.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: | |
| - '.github/workflows/integration-tests-root.yaml' | |
| - '**.go' | |
| - 'go.mod' | |
| - 'go.sum' | |
| - 'build.assets/Makefile' | |
| - 'build.assets/Dockerfile*' | |
| - 'Makefile' | |
| test: | |
| name: Integration Tests (Root) | |
| needs: changes | |
| if: ${{ !startsWith(github.head_ref, 'dependabot/') && needs.changes.outputs.changed == 'true' }} | |
| runs-on: ubuntu-22.04-16core | |
| permissions: | |
| contents: read | |
| id-token: write # required for AWS credentials | |
| container: | |
| image: ghcr.io/gravitational/teleport-buildbox:teleport19 | |
| options: --cap-add=SYS_ADMIN --privileged | |
| env: | |
| WEBASSETS_SKIP_BUILD: 1 | |
| TELEPORT_XAUTH_TEST: yes | |
| steps: | |
| - name: Checkout Teleport | |
| uses: actions/checkout@v6 | |
| - name: Prepare workspace | |
| uses: ./.github/actions/prepare-workspace | |
| - name: Run tests | |
| timeout-minutes: 40 | |
| run: | | |
| make integration-root RDPCLIENT_SKIP_BUILD=1 | |
| - name: Upload test metrics | |
| if: always() | |
| continue-on-error: true # Do not fail the workflow | |
| uses: ./.github/actions/upload-test-metrics |