forked from maistra/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Increase timeout, try again e2e * Update cron job * Attempt to fix resolv.conf * Fix order for resolv.conf * Use KUBECONFIG env variable instead of linked file * Use only fast linters * Fix linters and lint/licence warnings * Fix build - goimports doesn't seem to like this * Revert goimports * fmt.sh * More attempts for e2e, test fix * Default linked * Move pilot no-auth to the new style, seems more reliable * One more e2e attempt * Fix test parsing * Continue to use random ns for e2e * Improve parsing of ginko (why are we using it ? Consistency...) * Fix gopath for e2e * Fmt (Goland needs to be set to use the right import order * Try the mixer e2e * It appears kubedns service was missing in 0.24 * Timeout, try with simple (most test were passing) * Woot, e2e passing ! * yaml error * Use better names, run all e2e even if first fails * Initial version of the .deb creation * Fix building the .deb using the container * Allow version customization and match the original names * Run nightly on the current PR * Remove empty makefile * Fix lint errors * Fix typo * Fix bad merge
- Loading branch information
Showing
30 changed files
with
648 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
# Builder version | ||
VERSION ?= go1.9-k8s1.7.4 | ||
PROJECT ?= istio | ||
HUB ?= | ||
CI_VERSION ?= go1.9-k8s1.7.4 | ||
CI_HUB ?= istio | ||
|
||
image: | ||
docker build -t ${HUB}${PROJECT}/ci:$(VERSION) -f Dockerfile . | ||
ci.image: | ||
docker build -t ${CI_HUB}/ci:$(CI_VERSION) -f Dockerfile . | ||
|
||
push: | ||
docker push "${HUB}${PROJECT}/ci:$(VERSION)" | ||
ci.push: | ||
docker push "${CI_HUB}/ci:$(CI_VERSION)" | ||
|
||
run: | ||
ci.run: | ||
docker run --rm -u $(shell id -u) -it \ | ||
-v ${GOPATH}:${GOPATH} \ | ||
-w ${PWD} \ | ||
-e USER=${USER} \ | ||
--entrypoint /bin/bash \ | ||
${HUB}${PROJECT}/ci:$(VERSION) | ||
${CI_HUB}/ci:$(CI_VERSION) | ||
|
||
|
||
.PHONY: image push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.