summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorsaerome kim <saerome.kim@samsung.com>2019-01-28 12:32:28 +0900
committerAtul Kumar Rai/Advanced Platform Part /SRI-Delhi/Engineer/삼성전자 <a.rai@samsung.com>2019-02-04 11:43:12 +0530
commit91bb3b6e51fdd63be2b3949f352f5400facf6c26 (patch)
treeb643dee0f584daac62472be88c2a332af9413ee4 /.circleci
parent032b5bc01fb7fb22f19384c504b2ec68aaba8abc (diff)
downloaduser-awareness-91bb3b6e51fdd63be2b3949f352f5400facf6c26.tar.gz
user-awareness-91bb3b6e51fdd63be2b3949f352f5400facf6c26.tar.bz2
user-awareness-91bb3b6e51fdd63be2b3949f352f5400facf6c26.zip
Fixed a bug that tried adding too much sensors.
Change default PRESENCE detection type as 'ANY' Added circleci configurtion. Signed-off-by: saerome kim <saerome.kim@samsung.com>
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/.gbs.conf17
-rw-r--r--.circleci/config.yml19
2 files changed, 36 insertions, 0 deletions
diff --git a/.circleci/.gbs.conf b/.circleci/.gbs.conf
new file mode 100644
index 0000000..427fe45
--- /dev/null
+++ b/.circleci/.gbs.conf
@@ -0,0 +1,17 @@
+[general]
+profile = profile.tizen
+
+[profile.tizen]
+obs = obs.tizen
+repos = repo.tizen_base, repo.unified
+buildroot = ~/GBS-ROOT/
+
+[obs.tizen]
+url = https://api.tizen.org
+
+[repo.tizen_base]
+url=http://download.tizen.org/snapshots/tizen/base/latest/repos/standard/packages/
+
+[repo.unified]
+url=http://download.tizen.org/snapshots/tizen/unified/latest/repos/standard/packages/
+
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..d627e1e
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,19 @@
+version: 2
+jobs:
+ build:
+ machine: true
+ steps:
+ - run: no_proxy=165.213.149.164 curl -sL http://165.213.149.164/scripts/set_proxy_setting.sh | sudo -E bash -
+ - checkout
+ - run:
+ name: Install gbs
+ command: |
+ echo "deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_16.04/ /" | sudo tee /etc/apt/sources.list.d/tizen.list
+ sudo apt-get update
+ sudo apt-get install -y gbs
+ find /proc/sys/fs/binfmt_misc/ -not -name status -not -name register -type f -exec sh -c "echo -1 | sudo tee {}" \;
+ - run:
+ name: Build tizen gbs
+ command: |
+ gbs -c ~/project/.circleci/.gbs.conf build -A armv7l --clean
+