Skip to content

Commit 481da6f

Browse files
committed
enable integration tests on tvos
1 parent 2d9cc0f commit 481da6f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/gha/trigger_workflow.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,13 @@ def main():
5454
json_params = {}
5555
for param in args.param:
5656
json_params[param[0]] = param[1]
57-
json_params["platforms"] = "Desktop,Android,iOS"
5857
json_text = '{"ref":%s,"inputs":%s}' % (json.dumps(args.branch), json.dumps(json_params))
5958
if args.verbose or args.dryrun:
6059
print('request_url: %s' % request_url)
6160
print('request_body: %s' % json_text)
6261
if args.dryrun:
6362
return(0)
64-
63+
6564
print('Sending request to GitHub API...')
6665
run_output = subprocess.check_output([args.curl,
6766
'-s', '-o', '-', '-w', '\nHTTP status %{http_code}\n',
@@ -104,7 +103,7 @@ def main():
104103
workflow['head_branch'] == args.branch):
105104
run_id = workflow['id']
106105
break
107-
106+
108107
if run_id:
109108
workflow_url = 'https://github.com/firebase/firebase-cpp-sdk/actions/runs/%s' % (run_id)
110109
else:

0 commit comments

Comments
 (0)