github.com/jenkins-x/jx/v2@v2.1.155/jenkins-x-codegen.yml (about)

     1  buildPack: none
     2  pipelineConfig:
     3    pipelines:
     4      pullRequest:
     5        pipeline:
     6          agent:
     7            image: gcr.io/kaniko-project/executor:9912ccbf8d22bbafbf971124600fbb0b13b9cbd6
     8          stages:
     9            - name: ci
    10              environment:
    11                - name: BASE_WORKSPACE
    12                  value: /workspace/source
    13                - name: GOPATH
    14                  value: /workspace/go
    15                - name: PATH
    16                  value: "/usr/local/git/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/workspace/go/bin"
    17              options:
    18                containerOptions:
    19                  resources:
    20                    limits:
    21                      cpu: 4
    22                      memory: 8Gi
    23                    requests:
    24                      cpu: 3
    25                      memory: 6Gi
    26              steps:
    27                - name: mk-jx-project-dir
    28                  image: bash
    29                  command: mkdir
    30                  args:
    31                    - -p
    32                    - /workspace/go/src/github.com/jenkins-x/jx
    33                - name: copy-jx-project-to-gopath
    34                  image: bash
    35                  command: cp
    36                  args:
    37                    - -Rv
    38                    - "./"
    39                    - "/workspace/go/src/github.com/jenkins-x/jx"
    40                  dir: /workspace/source
    41                - name: generate
    42                  image: golang:1.13.8
    43                  command: ./hack/generate.sh
    44                  dir: /workspace/go/src/github.com/jenkins-x/jx