-
Notifications
You must be signed in to change notification settings - Fork 113
37 lines (35 loc) · 995 Bytes
/
run-integrationtests.yaml
File metadata and controls
37 lines (35 loc) · 995 Bytes
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
name: Integration-Tests
description: |
Runs Integrationtests using TestMachinery
on:
push:
branches:
- master
workflow_dispatch:
workflow_call:
inputs:
skip-integration-tests:
type: boolean
default: false
description: 'Skip running integration tests.'
jobs:
run-tests:
if: ${{ !inputs.skip-integration-tests }}
uses: gardener/cc-utils/.github/workflows/run-testmachinery-tests.yaml@master
permissions:
id-token: write
contents: read
with:
test-command: |
${testrunner_run} \
--no-execution-group \
--testrun-prefix tm-extension-aws \
--timeout=7200 \
--testruns-chart-path=.ci/testruns/default \
--set revision="$(git rev-parse @)"
skip-tests:
if: ${{ inputs.skip-integration-tests }}
runs-on: ubuntu-latest
steps:
- name: Skip Integration Tests
run: echo "Skipping Integration Tests as per input parameter."