Created
February 27, 2019 08:40
-
-
Save rawlingsj/e945fdcd57fd6eed6bd670ed01d6607c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
chat: | |
kind: slack | |
url: http://kubernetes.slack.com/ | |
developerChannel: '#jenkins-x-dev' | |
userChannel: '#jenkins-x-user' | |
buildPack: none | |
pipelineConfig: | |
pipelines: | |
pullRequest: | |
pipeline: | |
agent: | |
image: rawlingsj/executor:dev31 | |
stages: | |
- name: ci | |
environment: | |
- name: GIT_COMMITTER_EMAIL | |
value: [email protected] | |
- name: GIT_AUTHOR_EMAIL | |
value: [email protected] | |
- name: GIT_AUTHOR_NAME | |
value: jenkins-x-bot | |
- name: GIT_COMMITTER_NAME | |
value: jenkins-x-bot | |
steps: | |
- name: build-binary | |
image: docker.io/golang:1.11.5 | |
command: make | |
args: ['linux'] | |
workingDir: "/workspace/source" | |
env: | |
- name: GOPATH | |
value: /workspace/go | |
- name: GOPROXY | |
value: http://athens-proxy.jx.cd.jenkins-x.io | |
resources: | |
limits: | |
cpu: 4 | |
memory: 6144Mi | |
requests: | |
cpu: 3 | |
memory: 3072Mi | |
- name: validate-binary | |
image: docker.io/golang:1.11.5 | |
command: "./build/linux/jx" | |
args: ['--help'] | |
workingDir: "/workspace/source" | |
env: | |
- name: GOPATH | |
value: /workspace/go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment