Skip to content

Commit

Permalink
setup codebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Feb 27, 2024
1 parent 25b1a84 commit e73317d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .builder/actions/xcode-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
class XCodeTests(Builder.Action):
def run(self, env):
destination = env.shell.getenv("XCODE_DESTINATION")
env.shell.exec("xcodebuld", "-scheme AwsCommonRuntimeKit test -destination \'{}\'".format(destination),
env.shell.exec("/usr/bin/xcodebuild", "-scheme aws-crt-swift-Package test -destination \'{}\'".format(destination),
check=True)
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@ jobs:
target: tvos
- destination: 'platform=iOS Simulator,OS=17.2,name=iPhone 15'
target: tvos
- destination: 'platform=tvOS Simulator,OS=17.2,name=Apple TV 4K (3rd generation) (at 1080p)'
target: watchos
- destination: 'platform=tvOS Simulator,OS=16.1,name=Apple TV 4K (3rd generation) (at 1080p)'
target: watchos
- destination: 'platform=iOS Simulator,OS=16.1,name=iPhone 14'
target: watchos
- destination: 'platform=iOS Simulator,OS=17.2,name=iPhone 15'
target: watchos
steps:
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
Expand Down

0 comments on commit e73317d

Please sign in to comment.