Skip to content

Commit 49aa011

Browse files
ci: Build Demo App in CI (#157)
1 parent 3eac5b5 commit 49aa011

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/ci.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,17 @@ jobs:
3838
CLIENT_TOKEN: ${{ secrets.CONFIDENCE_CLIENT_TOKEN }}
3939
run: scripts/run_tests.sh $CLIENT_TOKEN
4040

41+
DemoApp:
42+
runs-on: macOS-latest
43+
steps:
44+
- uses: actions/checkout@v3
45+
- name: webfactory/ssh-agent
46+
uses: webfactory/[email protected]
47+
with:
48+
ssh-private-key: ${{ secrets.SDK_REPO_PRIVATE_KEY }}
49+
- name: Build Demo App
50+
run: ConfidenceDemoApp/scripts/build.sh
51+
4152
SwiftLint:
4253
runs-on: ubuntu-latest
4354
steps:

ConfidenceDemoApp/scripts/build.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
script_dir=$(dirname $0)
6+
root_dir="$script_dir/../"
7+
8+
(cd $root_dir &&
9+
xcodebuild \
10+
-quiet \
11+
-scheme ConfidenceDemoApp \
12+
-destination 'platform=iOS Simulator,name=iPhone 15,OS=17.2' )

0 commit comments

Comments
 (0)