-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcircle.yml
38 lines (32 loc) · 1.04 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
#
# -*- coding: utf-8; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
general:
branches:
ignore:
- /.*-dev/
dependencies:
override:
# Install requirements
- sudo apt-get update -qq
- sudo apt-get install -qq python
- sudo apt-get install -qq patchutils
- sudo apt-get install -qq realpath
- sudo apt-get install -qq curl
- sudo apt-get install -qq git
- sudo apt-get install -qq diffstat
- sudo apt-get install -qq chrpath
- sudo apt-get install -qq xterm
# Configure git
- git config --global user.email "[email protected]"
- git config --global user.name "circleci"
- git config --global color.ui false
# Install git-repo
# NB: PATH already includes /home/ubuntu/bin
- mkdir -p $HOME/bin
- curl https://storage.googleapis.com/git-repo-downloads/repo > $HOME/bin/repo
- chmod a+x $HOME/bin/repo
test:
override:
- make parse-only
# FIXME [script] If the build is well finished then update combination layer and publish
# images built on $CIRCLE_ARTIFACTS.