-
Notifications
You must be signed in to change notification settings - Fork 11
/
.not-travis.yaml
81 lines (81 loc) · 2.46 KB
/
.not-travis.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
76
77
78
79
80
81
language: elixir
elixir:
- '1.8.1'
otp_release:
- '21.3'
services:
- docker
cache:
directories:
- deps
- _build/dev
- _build/test
- _build/integration
before_cache:
- bash scripts/travis-uncache.sh
stages:
- build
- name: publish
if: branch == master && type != pull_request
- release
jobs:
include:
- stage: build
name: static analysis
script: bash scripts/travis-verify.sh
- name: unit test
script: mix test
- name: web
script: bash scripts/travis-test.sh web
- name: pipeline
script: bash scripts/travis-test.sh pipeline
- name: providers
script: bash scripts/travis-unit-test.sh providers
- name: dead_letter
script: bash scripts/travis-test.sh dead_letter
- name: e2e
script: bash scripts/travis-test.sh e2e force
- name: discovery_api
script: bash scripts/travis-test.sh discovery_api
- name: tableau-wdc
script: bash scripts/wdc-test.sh
- name: andi
script: bash scripts/travis-test.sh andi
- name: flair
script: bash scripts/travis-test.sh flair
- name: forklift
script: bash scripts/travis-test.sh forklift
- name: valkyrie
script: bash scripts/travis-test.sh valkyrie
- name: reaper
script: bash scripts/travis-test.sh reaper
- name: estuary
script: bash scripts/travis-test.sh estuary
- name: discovery_streams
script: bash scripts/travis-test.sh discovery_streams
- name: definition_kafka
script: bash scripts/travis-test.sh definition_kafka
- stage: publish
name: publish microservices
script:
- |
bash scripts/travis-publish.sh valkyrie
bash scripts/travis-publish.sh forklift
bash scripts/travis-publish.sh flair
bash scripts/travis-publish.sh discovery_streams
- name: publish andi
script: bash scripts/travis-publish.sh andi
- name: publish reaper
script: bash scripts/travis-publish.sh reaper
- name: publish discovery_api
script: bash scripts/travis-publish.sh discovery_api
- name: publish estuary
script: bash scripts/travis-publish.sh estuary
- stage: release
name: release
if: tag =~ /^(andi|reaper|valkyrie|forklift|flair|estuary|discovery_streams|discovery_api)@\d{1,3}\.\d{1,3}\.\d{1,3}$/
script: bash scripts/travis-publish.sh
branches:
only:
- master
- /(andi|reaper|valkyrie|forklift|flair|estuary|discovery_streams|discovery_api)@\d{1,3}\.\d{1,3}\.\d{1,3}/