Skip to content

Commit

Permalink
test python string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Feb 27, 2024
1 parent d678b1d commit bdfa815
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .builder/actions/xcode-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,26 @@
class XCodeTests(Builder.Action):
def run(self, env):
destination = env.shell.getenv("XCODE_DESTINATION")
platform_string = '\'platform='+destination+'\''
commands =[
'sudo',
'xcodebuild',
'-scheme',
'aws-crt-swift-Package',
'test',
'-destination',
'\'platform='+destination+'\''
platform_string
]
env.shell.exec(commands, check=True)
print(commands)
print(platform_string.strip('\"'))
commands2 =[
'sudo',
'xcodebuild',
'-scheme',
'aws-crt-swift-Package',
'test',
'-destination',
platform_string.strip('\"')
]
print(commands2)
env.shell.exec(commands2, check=True)

0 comments on commit bdfa815

Please sign in to comment.