File tree 1 file changed +5
-16
lines changed
1 file changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -19,25 +19,14 @@ jobs:
19
19
20
20
# Build the demo projects.
21
21
build_demo :
22
- name : Build ${{ matrix.scheme }} (Xcode ${{ matrix.xcode_version }})
23
- # NOTE: macos-latest is NOT equivalent to macos-12 as of September 2022.
24
- # Source: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
25
- runs-on : macos-13
22
+ name : Build Demo
23
+ runs-on : macos-latest
26
24
needs : [swift_test]
27
- strategy :
28
- # Setting 'fail-fast' to 'true' implies the build will fail the first time it encounters an error.
29
- fail-fast : true
30
- matrix :
31
- scheme :
32
- - FlowDemo (iOS)
33
- - FlowDemo (macOS)
34
25
steps :
26
+ - name : Check out Flow
27
+ uses : actions/checkout@v4
35
28
- name : Build Demo
36
- uses : AudioKit/ci/.github/actions/build-demo@main
37
- with :
38
- project : Demo/FlowDemo.xcodeproj
39
- scheme : ${{ matrix.scheme }}
40
- xcode_version : ${{ matrix.xcode_version }}
29
+ - run : xcodebuild build -project Demo/FlowDemo.xcodeproj -scheme FlowDemo -destination "name=My Mac"
41
30
42
31
# Send notification to Discord on failure.
43
32
send_notification :
You can’t perform that action at this time.
0 commit comments