This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
78 lines (60 loc) · 1.86 KB
/
.travis.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
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
language: python
sudo: required
services:
- docker
python:
- "3.6"
branches:
only:
- sync
before_install:
- git config --global user.name "$USERNAME"
- git config --global user.email "$EMAIL"
- git clone --branch=master https://$USERNAME:$GH_TOKEN@$GH_REF sync-mirror
- cd sync-mirror
- chmod +x commit.sh
stages:
- sync
- export
- trigger
jobs:
include:
- stage: sync
script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n kubernetes-helm
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n google-containers
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n cloud-solutions-images
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n heptio-images
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n k8s-artifacts-prod
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n kubernetes-e2e-test-images
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n google-samples
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n k8s-authenticated-test
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n gke-release
- ./commit.sh
- script:
- python sync.py -u $HUB_NAME -p $HUB_PWD -o $HUB_ORG -n authenticated-image-pulling
- ./commit.sh
- stage: export
script:
- python sync.py -u $HUB_NAME -o $HUB_ORG --markdown-only
- ./commit.sh
- stage: trigger
script:
- python sync.py -u $HUB_NAME --travis-continue
- ./commit.sh