This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ before_script:
6
6
- ./travis/setup.sh
7
7
- export PATH=$PWD/depot_tools:$PATH
8
8
- export BOTO_CONFIG=$PWD/boto
9
+ - cd src
9
10
script : ./travis/build.sh
10
- cache :
11
- directories :
12
- - third_party/android_tools
11
+ # cache:
12
+ # directories:
13
+ # - third_party/android_tools
Original file line number Diff line number Diff line change 1
1
solutions = [{
2
- "name" : "sky_engine ",
2
+ "name" : "src ",
3
3
"url" : "https://github.com/domokit/sky_engine.git",
4
4
"deps_file" : "DEPS",
5
5
"managed" : False,
6
6
"safesync_url": "",
7
7
}]
8
- target_os = ['linux']
8
+ target_os = ['linux', 'android' ]
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -ex
3
3
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
+
4
11
# Get depot_tools.
5
12
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
6
13
export PATH=" $( pwd) /depot_tools:${PATH} "
@@ -21,4 +28,5 @@ tar xzf gsutil.tar.gz
21
28
# Setup .gclient file.
22
29
cp travis/gclient ../.gclient
23
30
31
+ cd src
24
32
gclient sync
You can’t perform that action at this time.
0 commit comments