[infra] Add ios-dev-image-13.6 asset.
Change-Id: I2a951232b9c3a7e77a58f6f27fda1834d0b165bf Reviewed-on: https://skia-review.googlesource.com/c/skia/+/305103 Reviewed-by: Joe Gregorio <jcgregorio@google.com> Reviewed-by: Weston Tracey <westont@google.com> Commit-Queue: Weston Tracey <westont@google.com>
This commit is contained in:
parent
24bc937a55
commit
b047b0b885
8
infra/bots/assets/ios-dev-image-13.6/README.md
Normal file
8
infra/bots/assets/ios-dev-image-13.6/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
To create or update this asset, you will need a Mac with Xcode installed. Just
|
||||
run
|
||||
|
||||
```shell
|
||||
./upload.py --target_dir \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/13.6
|
||||
```
|
||||
|
1
infra/bots/assets/ios-dev-image-13.6/VERSION
Normal file
1
infra/bots/assets/ios-dev-image-13.6/VERSION
Normal file
@ -0,0 +1 @@
|
||||
0
|
26
infra/bots/assets/ios-dev-image-13.6/common.py
Executable file
26
infra/bots/assets/ios-dev-image-13.6/common.py
Executable file
@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
#
|
||||
# Copyright 2017 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
|
||||
"""Common vars used by scripts in this directory."""
|
||||
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
FILE_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir))
|
||||
|
||||
sys.path.insert(0, INFRA_BOTS_DIR)
|
||||
from assets import assets
|
||||
|
||||
ASSET_NAME = os.path.basename(FILE_DIR)
|
||||
|
||||
|
||||
def run(cmd):
|
||||
"""Run a command, eg. "upload" or "download". """
|
||||
assets.main([cmd, ASSET_NAME] + sys.argv[1:])
|
16
infra/bots/assets/ios-dev-image-13.6/download.py
Executable file
16
infra/bots/assets/ios-dev-image-13.6/download.py
Executable file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python
|
||||
#
|
||||
# Copyright 2017 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
|
||||
"""Download the current version of the asset."""
|
||||
|
||||
|
||||
import common
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
common.run('download')
|
16
infra/bots/assets/ios-dev-image-13.6/upload.py
Executable file
16
infra/bots/assets/ios-dev-image-13.6/upload.py
Executable file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python
|
||||
#
|
||||
# Copyright 2017 Google Inc.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
|
||||
"""Upload a new version of the asset."""
|
||||
|
||||
|
||||
import common
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
common.run('upload')
|
Loading…
Reference in New Issue
Block a user