This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 4 files changed +8
-5
lines changed 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
- language : dart
1
+ language : cpp
2
2
sudo : required
3
3
before_install :
4
4
- ./travis/before_install.sh
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def to_gn_args(args):
29
29
gn_args = {}
30
30
31
31
gn_args ["is_debug" ] = args .debug
32
- gn_args ["is_clang" ] = args .target_os not in ['android' ]
32
+ gn_args ["is_clang" ] = args .clang and args . target_os not in ['android' ]
33
33
34
34
if args .target_os == 'android' :
35
35
gn_args ["target_os" ] = "android"
@@ -79,6 +79,9 @@ def main():
79
79
parser .add_argument ('--goma' , default = True , action = 'store_true' )
80
80
parser .add_argument ('--no-goma' , dest = 'goma' , action = 'store_false' )
81
81
82
+ parser .add_argument ('--clang' , default = True , action = 'store_true' )
83
+ parser .add_argument ('--no-clang' , dest = 'clang' , action = 'store_false' )
84
+
82
85
args = parser .parse_args ()
83
86
84
87
command = ['gn' , 'gen' , '--check' ]
Original file line number Diff line number Diff line change 3
3
4
4
# Linux Debug
5
5
./sky/tools/gn --debug
6
- ninja -j 8 -C out/Debug
7
- ./sky/tools/test_sky --debug
6
+ ninja -j 2 -C out/Debug
7
+ ./sky/tools/test_sky --debug --child-processes=1
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ solutions = [{
5
5
"managed" : False,
6
6
"safesync_url": "",
7
7
}]
8
- target_os = ['linux']
8
+ target_os = ['linux', 'android' ]
You can’t perform that action at this time.
0 commit comments