Skip to content

Commit 091948d

Browse files
committed
Simplify CI
1 parent 3f4a5ed commit 091948d

File tree

1 file changed

+5
-16
lines changed

1 file changed

+5
-16
lines changed

.github/workflows/tests.yml

+5-16
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,14 @@ jobs:
1919

2020
# Build the demo projects.
2121
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
2624
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)
3425
steps:
26+
- name: Check out Flow
27+
uses: actions/checkout@v4
3528
- 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"
4130

4231
# Send notification to Discord on failure.
4332
send_notification:

0 commit comments

Comments
 (0)