-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1 KB
/
ci.yml
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
name: CI
on:
pull_request:
workflow_dispatch:
jobs:
ci-job:
name: Checks
uses: ./.github/workflows/checks.yml
secrets: inherit
metrics:
needs: [ ci-job ]
uses: ./.github/workflows/report.yml
gate-1:
name: Gate 1 - Regular CI
needs: [ ci-job ]
runs-on: ubuntu-latest
steps:
- name: Branch Protection
run: true
slow-test-detection:
name: Run Slow or Expensive Tests (e.g. SaaS)?
if: ${{ false }}
runs-on: ubuntu-latest
steps:
- name: Detect Slow Tests
run: true
environment:
slow-tests
run-slow-tests:
name: Run Slow or Expensive Tests (e.g. SaaS) if Requested
uses: ./.github/workflows/run-tests.yml
needs: [ slow-test-detection ]
secrets: inherit
with:
slow-tests: true
python-version: "3.10"
exasol-version: "7.1.19"
gate-2:
name: Gate 2 - Allow Merge
runs-on: ubuntu-latest
needs: [ run-slow-tests ]
steps:
- name: Branch Protection
run: true