github.com/cloudfoundry-attic/cli-with-i18n@v6.32.1-0.20171002233121-7401370d3b85+incompatible/ci/cli/tasks/units-osx.yml (about)

     1  ---
     2  platform: darwin
     3  
     4  inputs:
     5  - name: cli
     6    path: gopath/src/code.cloudfoundry.org/cli
     7  
     8  run:
     9    path: bash
    10    args:
    11    - -c
    12    - |
    13      set -e
    14  
    15      export GOPATH=$PWD/gopath
    16      export PATH=$GOPATH/bin:$PATH
    17  
    18      cd $GOPATH/src/code.cloudfoundry.org/cli
    19  
    20      export LC_ALL="en_US.UTF-8"
    21  
    22      go version
    23  
    24      go install ./vendor/github.com/onsi/ginkgo/ginkgo
    25      ginkgo version
    26  
    27      echo -e "\n Vetting packages for potential issues..."
    28      go tool vet -all -shadow=true ./api ./actor ./command ./integration ./types ./util ./version
    29      CF_HOME=$(pwd)/fixtures ginkgo -r -randomizeAllSpecs -randomizeSuites -race -skipPackage integration