2017-06-12 09:03:58 +00:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
2018-10-02 17:03:32 +00:00
|
|
|
|
|
|
|
install:
|
2019-08-29 22:29:26 +00:00
|
|
|
- docker run --name buildkit --rm -d --privileged -p 1234:1234 $REPO_SLUG_ORIGIN --debug --addr tcp://0.0.0.0:1234 --oci-worker-gc=false
|
2018-10-02 17:03:32 +00:00
|
|
|
- sudo docker cp buildkit:/usr/bin/buildctl /usr/bin/
|
|
|
|
- export BUILDKIT_HOST=tcp://0.0.0.0:1234
|
|
|
|
|
2019-08-29 22:29:26 +00:00
|
|
|
after_failure:
|
|
|
|
- docker logs buildkit
|
|
|
|
- sudo dmesg
|
|
|
|
|
2018-10-02 17:03:32 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-08-08 00:50:00 +00:00
|
|
|
- PLATFORMS="linux/amd64,linux/arm/v7,linux/arm64,linux/s390x,linux/ppc64le"
|
2018-10-02 17:03:32 +00:00
|
|
|
- PREFER_BUILDCTL="1"
|
|
|
|
|
2019-08-08 00:50:00 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- stage: building
|
|
|
|
name: "Build"
|
|
|
|
script: ./hack/login_ci_cache && ./hack/build_ci_first_pass
|
|
|
|
- stage: testing
|
|
|
|
name: "Client integration tests"
|
|
|
|
script: TESTPKGS=./client ./hack/test integration
|
|
|
|
- script:
|
|
|
|
- ./hack/lint
|
|
|
|
- SKIP_INTEGRATION_TESTS=1 ./hack/test integration gateway
|
|
|
|
- ./hack/validate-vendor
|
|
|
|
- ./hack/validate-generated-files
|
|
|
|
- TESTPKGS=./frontend ./hack/test
|
|
|
|
name: "Unit Tests & Lint & Vendor & Proto"
|
|
|
|
- script:
|
|
|
|
- TESTPKGS=./frontend/dockerfile TESTFLAGS='-v --parallel=6' ./hack/test
|
|
|
|
name: "Dockerfile integration tests"
|
|
|
|
- script: TESTPKGS=./frontend/dockerfile ./hack/test dockerfile
|
|
|
|
name: "External Dockerfile tests"
|
|
|
|
- script: RUNC_PLATFORMS=$PLATFORMS PLATFORMS="${PLATFORMS},darwin/amd64,windows/amd64" ./hack/cross
|
|
|
|
name: "Cross"
|
|
|
|
- stage: deploy
|
|
|
|
script: skip
|
|
|
|
name: "Deploy"
|
|
|
|
if: type != pull_request
|
|
|
|
deploy:
|
|
|
|
- provider: script
|
|
|
|
script: ./hack/images master $REPO_SLUG_TARGET push
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
branch: master
|
|
|
|
condition: $TRAVIS_EVENT_TYPE != "cron"
|
|
|
|
- provider: script
|
|
|
|
script: ./hack/images $TRAVIS_TAG $REPO_SLUG_TARGET push && PLATFORMS="${PLATFORMS},darwin/amd64,windows/amd64" ./hack/release-tar $TRAVIS_TAG release-out
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
tags: true
|
|
|
|
condition: $TRAVIS_TAG =~ ^v[0-9]
|
|
|
|
- provider: releases
|
|
|
|
api_key:
|
|
|
|
secure: "hA0L2F6O1MLEJEbUDzxokpO6F6QrAIkltmVG3g0tTAoVj1xtCOXSmH3cAnVbFYyOz9q8pa/85tbpyEEIHVlqvWk2a5/QS16QaBW6XxH+FiZ3oQ44JbtpsjpmBFxdhfeFs8Ca6Nj29AOtDx21HHWsZKlBZFvC4Ubc05AM1rgZpJyZVDvYsjZIunc8/CPCbvAAp6RLnLHxAYXF+TQ7mAZP2SewsW/61nPjPIp2P4d93CduA9kUSxtC/1ewmU2T9Ak2X1Nw2ecPTonGjO51xNa6Ebo1hsbsRt5Krd1IR5rSkgXqLrhQO+19J3sUrQr2p8su6hCTKXR5TQz9L5C9VG8T3yOLbA7/FKBndWgBCm7EB7SezhFkm91e3Phkd/Hi5PF4ZKUSKyOYORHpoeg7ggBXaQF5r0OolqvNjxe7EhE+zlUIqnk5eprVrXT8H1QDF0Jg7pfdqVV9AIZO6i+e+1wOVDaP6K6tiWGdkRFH0wahcucZ/8xVoa8JVNZKke2mMCuLGsNWcN4DeLhkxa6giw3tkqbnY+eTYcW/PyVFMAVsZ8rOjQu4u4mm82FYBI7UywWQJTReD1LO2ibxHk74nwtyauX7KsCPFh2CA27DKlsQ1/xkjaCpE6vduzKzPj2DSHp6tKjxn2edPWRI+/4JxLD6KUFX1f1KqD0pKy/qVsZhEPI="
|
|
|
|
file: release-out/**/*
|
|
|
|
skip_cleanup: true
|
|
|
|
file_glob: true
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
tags: true
|
|
|
|
condition: $TRAVIS_TAG =~ ^v[0-9]
|
|
|
|
- provider: script
|
|
|
|
script: ./frontend/dockerfile/cmd/dockerfile-frontend/hack/release master mainline $DF_REPO_SLUG_TARGET push
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
branch: master
|
|
|
|
condition: $TRAVIS_EVENT_TYPE != "cron"
|
|
|
|
- provider: script
|
|
|
|
script: ./frontend/dockerfile/cmd/dockerfile-frontend/hack/release master experimental $DF_REPO_SLUG_TARGET push
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
branch: master
|
|
|
|
condition: $TRAVIS_EVENT_TYPE != "cron"
|
|
|
|
- provider: script
|
|
|
|
script: ./frontend/dockerfile/cmd/dockerfile-frontend/hack/release tag $TRAVIS_TAG $DF_REPO_SLUG_TARGET push
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
tags: true
|
|
|
|
condition: $TRAVIS_TAG =~ ^dockerfile/[0-9]
|
|
|
|
- provider: script
|
|
|
|
script: ./frontend/dockerfile/cmd/dockerfile-frontend/hack/release daily _ $DF_REPO_SLUG_TARGET push
|
|
|
|
on:
|
|
|
|
repo: moby/buildkit
|
|
|
|
branch: master
|
|
|
|
condition: $TRAVIS_EVENT_TYPE == "cron"
|
|
|
|
|
2018-10-11 00:09:35 +00:00
|
|
|
|
|
|
|
before_deploy:
|
|
|
|
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|
|
|
|