Skip to content

Commit

Permalink
feat: test github action builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jordynsamuel committed Mar 9, 2024
1 parent dd45d44 commit 939a3f5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ios-sdk-ci

on:
pull_request:
branches: ["master"]
push:
branches: ["master"]

jobs:
build:
runs-on: macOS

steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-region: us-east-1
role-to-assume: arn:aws:iam::514563129364:role/circlefin-ops-github-actions
role-duration-seconds: 1200

- name: Checkout ios-sdk repository
uses: actions/checkout@v3

- name: Build iOS SDK
run: |
cd 'Sample App'
xcodebuild clean
pod install
xcodebuild build-for-testing -workspace w3s-ios-sample-app-wallets.xcworkspace -scheme "w3s-ios-sample-app-wallets" -configuration "Debug" -destination "platform=iOS Simulator,name=iPhone 8 Plus,OS=latest"

0 comments on commit 939a3f5

Please sign in to comment.