forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 1.85 KB
/
unit-tests-integrations.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Unit Tests (Integrations)
run-name: Unit Tests (Integrations) - ${{ github.run_id }} - @${{ github.actor }}
on:
push:
branches:
- master
- branch/*
pull_request:
paths:
- '/go.mod'
- '/go.sum'
- 'integrations/**'
- 'api/types/**'
- 'gen/**'
- 'lib/tbot/**'
- 'Makefile'
- '.github/workflows/unit-tests-integrations.yaml'
- 'build.assets/Makefile'
- 'build.assets/Dockerfile*'
merge_group:
paths:
- '/go.mod'
- '/go.sum'
- 'integrations/**'
- 'api/types/**'
- 'gen/**'
- 'lib/tbot/**'
- 'Makefile'
- '.github/workflows/unit-tests-integrations.yaml'
- 'build.assets/Makefile'
- 'build.assets/Dockerfile*'
jobs:
test:
name: Unit Tests (Integrations)
if: ${{ !startsWith(github.head_ref, 'dependabot/') }}
runs-on: ubuntu-22.04-16core
permissions:
contents: read
container:
image: ghcr.io/gravitational/teleport-buildbox:teleport14
options: --cap-add=SYS_ADMIN --privileged
steps:
- name: Checkout Teleport
uses: actions/checkout@v3
- 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 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