forked from projectcalico/calicoctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
27 lines (25 loc) · 930 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
general:
artifacts:
- "dist"
checkout:
post:
# After checking out the code, fixup the timestamps on all the files.
# See this page for more details - http://tschottdorf.github.io/cockroach-docker-circleci-continuous-integration/
- find . -exec touch -t 201401010000 {} \;
- for x in $(git ls-tree --full-tree --name-only -r HEAD); do touch -t $(date -d "$(git log -1 --format=%ci "${x}")" +%y%m%d%H%M.%S) "${x}"; done
machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
override:
- mkdir -p ~/docker
# If the build.tar exists, then load it into docker to take advantage of any cached layers.
- if [[ -e ~/docker/build.tar ]]; then docker load -i ~/docker/build.tar; fi
# Build the build image. Docker will use cached layers where it can.
- make calicobuild.created
- docker save --output ~/docker/build.tar calico/build
test:
override:
- make ut-circle