Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5fbbf99

Browse files
abarthAdam Barth
authored andcommitted
less
1 parent accd565 commit 5fbbf99

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ before_script:
66
- ./travis/setup.sh
77
- export PATH=$PWD/depot_tools:$PATH
88
- export BOTO_CONFIG=$PWD/boto
9+
- cd src
910
script: ./travis/build.sh
10-
cache:
11-
directories:
12-
- third_party/android_tools
11+
# cache:
12+
# directories:
13+
# - third_party/android_tools

travis/gclient

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
solutions = [{
2-
"name" : "sky_engine",
2+
"name" : "src",
33
"url" : "https://github.com/domokit/sky_engine.git",
44
"deps_file" : "DEPS",
55
"managed" : False,
66
"safesync_url": "",
77
}]
8-
target_os = ['linux']
8+
target_os = ['linux', 'android']

travis/setup.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#!/bin/bash
22
set -ex
33

4+
# Create an src/ directory to work with.
5+
# TODO(alhaad): This is a temporary hack. Find a better way to do this.
6+
mkdir ../src
7+
mv * ../src
8+
mv .??* ../src
9+
mv ../src .
10+
411
# Get depot_tools.
512
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
613
export PATH="$(pwd)/depot_tools:${PATH}"
@@ -21,4 +28,5 @@ tar xzf gsutil.tar.gz
2128
# Setup .gclient file.
2229
cp travis/gclient ../.gclient
2330

31+
cd src
2432
gclient sync

0 commit comments

Comments
 (0)