Skip to content

Commit

Permalink
setup action commands
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Feb 27, 2024
1 parent 6ca2c25 commit c5013ee
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .builder/actions/xcode-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@
class XCodeTests(Builder.Action):
def run(self, env):
destination = env.shell.getenv("XCODE_DESTINATION")
env.shell.exec('xcodebuild','-scheme aws-crt-swift-Package test -destination \'{}\''.format(destination),
check=True)
commands =[
'xcodebuild',
'-scheme',
'aws-crt-swift-Package',
'test',
'-destination',
'\'{}\''.format(destination)
]
env.shell.exec(commands, check=True)

0 comments on commit c5013ee

Please sign in to comment.