language: go
go:
  - 1.10.2

env:
  - HUGO_VERSION=0.49

jobs:
  include:
    - name: "Testing examples"
      # Don't want default ./... here:
      install:
      - export PATH=$GOPATH/bin:$PATH
      - mkdir -p $HOME/gopath/src/k8s.io
      - mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/website && cd $HOME/gopath/src/k8s.io/website

      # Make sure we are testing against the correct branch
      - pushd $GOPATH/src/k8s.io && git clone https://github.com/kubernetes/kubernetes && popd
      - pushd $GOPATH/src/k8s.io/kubernetes && git checkout release-1.11 && popd
      - cp -L -R $GOPATH/src/k8s.io/kubernetes/vendor/ $GOPATH/src/
      - rm -r $GOPATH/src/k8s.io/kubernetes/vendor/

      # Fetch additional dependencies to run the tests in examples/examples_test.go
      - go get -t -v k8s.io/website/content/en/examples
      script:
      - go test -v k8s.io/website/content/en/examples
    - name: "Hugo build"
      install:
      - curl -L https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-64bit.tar.gz | tar -xz
      - mkdir -p ${TRAVIS_HOME}/bin
      - mv hugo ${TRAVIS_HOME}/bin
      - export PATH=${TRAVIS_HOME}/bin:$PATH
      script:
      - hugo