Skip to content

Commit 2b6d0d9

Browse files
committed
Redo CI for Hephy
1 parent 68e8d78 commit 2b6d0d9

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

.travis.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
sudo: required
2-
language: go
1+
language: generic
2+
branches:
3+
only:
4+
- master
5+
env:
6+
- DEV_REGISTRY=quay.io DOCKER_BUILD_FLAGS="--pull --no-cache"
37
services:
4-
- docker
5-
script: make test
6-
notifications:
7-
slack:
8-
secure: pWDCV3od8gxvzxh9DrOTvBL54XoCfWYhZZlwd2ZbyyOz6SS12Psg/ZuCT2253p4yMfF/LPlsz76mr7NgcCrMI0ReveTa/rnt3XBZtyY+1rlsQsy2oxgdAzbO587ENCQeMw2F/OWHaixMT8NDqxEqQd6xafK9Zmg6BeBjwgs7XfXKcR3WzNIuCO0ZG05+Yd0FIxmd/8Xm5tGiFEYr05+Ix6MLdF9MSCXZUPeu1EsYXhDljokLq49w63W1UMU10tm4t7VCEdaO+X9w6EJ5Ov8HDxb6L6IviUYY6+IGTZ01nwIoM6OrGQqfEAytYqgTKdehgQzQnAbLI6TW2wJ0twqEsLrlbTa4NW4j0KkazQJkN5kqcKYQvaeKJJhvJIG44Gi/u78pW3S6W7NU5DhrlE6bbxdIBHJW1vJBimkqu2oBNrO5ZoBB9MS9zflBsU5g/pQpVeHWMnWE8fcYDGa1PqAcr7q6wtdPsrVZhnHmmARN3PwZzIVVVsXbaIQG8VLC5grLGnwMf1Y1fz2nK3sVpCftvrYZT3G6CNAASo+eLOwYdZdiJ9jIS7WNLN1GtpIEvjeDt3QRqsDyH8YoAKUvY5h/v8IWPP/BaSwQbJwep4+Dj7xkpXX5/4wm4jEnVFV1p4xE0lD1AXvEMAVHtPhhggvscNhF9j6oeoPju6eTPcxG+5o=
8+
- docker
9+
sudo: required
10+
install:
11+
- make bootstrap
12+
script:
13+
- make test-style test-cover build docker-build
14+
after_success:
15+
- bash <(curl -s https://codecov.io/bash)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHORT_NAME ?= builder
33
include versioning.mk
44

55
# dockerized development environment variables
6-
REPO_PATH := github.com/deis/${SHORT_NAME}
6+
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
77
DEV_ENV_IMAGE := quay.io/deis/go-dev:v0.22.0
88
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
99
DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
@@ -56,6 +56,6 @@ check-kubectl:
5656
fi
5757

5858
deploy: check-kubectl docker-build docker-push
59-
kubectl --namespace=deis patch deployment deis-$(SHORT_NAME) --type='json' -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value":"$(IMAGE)"}]'
59+
kubectl --namespace=hephy patch deployment hephy-$(SHORT_NAME) --type='json' -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value":"$(IMAGE)"}]'
6060

6161
.PHONY: bootstrap glideup build docker-build test test-style test-unit test-cover deploy

glide.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/deis/builder
1+
package: github.com/teamhephy/builder
22
ignore:
33
- appengine
44
- appengine/memcache
@@ -15,7 +15,7 @@ import:
1515
- package: gopkg.in/yaml.v2
1616
version: eca94c41d994ae2215d455ce578ae6e2dc6ee516
1717
- package: github.com/pborman/uuid
18-
- package: github.com/deis/pkg
18+
- package: github.com/teamhephy/pkg
1919
version: 00e55bded444eea7fadff398f93152e962a0c338
2020
subpackages:
2121
- time
@@ -41,5 +41,5 @@ import:
4141
version: 8e7dc108ab3a1ab6ce6d922bbaff5657b88e8e49
4242
repo: https://github.com/spf13/pflag
4343
vcs: git
44-
- package: github.com/deis/controller-sdk-go
44+
- package: github.com/teamhephy/controller-sdk-go
4545
version: 27bab7c5535de202635877fa7600d5158b91a757

0 commit comments

Comments
 (0)