Integration Tests (Non-root) - 11382907779 - @tigrato #89058
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 Tests (Non-root) | |
run-name: Integration Tests (Non-root) - ${{ 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: | |
- '.github/workflows/integration-tests-non-root.yaml' | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'build.assets/Makefile' | |
- 'build.assets/Dockerfile*' | |
- 'Makefile' | |
test: | |
name: Integration Tests (Non-root) | |
needs: changes | |
if: ${{ !startsWith(github.head_ref, 'dependabot/') && needs.changes.outputs.changed == 'true' }} | |
runs-on: ubuntu-22.04-16core | |
permissions: | |
contents: read | |
packages: read | |
container: | |
image: ghcr.io/gravitational/teleport-buildbox:teleport15 | |
env: | |
TELEPORT_ETCD_TEST: yes | |
TELEPORT_ETCD_TEST_ENDPOINT: https://etcd0:2379 | |
WEBASSETS_SKIP_BUILD: 1 | |
TELEPORT_XAUTH_TEST: yes | |
options: --cap-add=SYS_ADMIN --privileged | |
services: | |
etcd0: | |
image: ghcr.io/gravitational/ci-etcd:3.3.9 | |
options: >- | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
--add-host etcd0:127.0.0.1 | |
ports: | |
- 2379:2379 | |
- 2380:2380 | |
- 3379:3379 | |
steps: | |
- name: Checkout Teleport | |
uses: actions/checkout@v4 | |
- name: Prepare workspace | |
uses: ./.github/actions/prepare-workspace | |
- name: Chown | |
run: | | |
mkdir -p $(go env GOMODCACHE) | |
mkdir -p $(go env GOCACHE) | |
chown -Rf ci:ci ${GITHUB_WORKSPACE} $(go env GOMODCACHE) $(go env GOCACHE) | |
continue-on-error: true | |
- name: Run tests | |
timeout-minutes: 40 | |
run: runuser -u ci -g ci make integration RDPCLIENT_SKIP_BUILD=1 |