Skip to content

Commit 893875e

Browse files
committed
Updated to AudioKit 5.5
1 parent 387c2c1 commit 893875e

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
xcode_version: ['12.4']
13-
runs-on: macos-latest
12+
xcode_version: ['13.1']
13+
runs-on: macos-12
1414
env:
1515
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
1616
steps:
@@ -19,11 +19,11 @@ jobs:
1919
- name: Build STKAudioKit
2020
run: |
2121
set -euo pipefail
22-
xcodebuild -scheme STKAudioKit -enableAddressSanitizer YES clean build | xcpretty
22+
xcodebuild -destination 'platform=OS X,arch=x86_64' -scheme STKAudioKit -enableAddressSanitizer YES clean build | xcpretty
2323
- name: Run Tests (ASAN)
2424
run: |
2525
set -euo pipefail
26-
xcodebuild -scheme STKAudioKit -enableAddressSanitizer YES test | xcpretty
26+
xcodebuild -destination 'platform=OS X,arch=x86_64' -scheme STKAudioKit -enableAddressSanitizer YES test | xcpretty
2727
2828
# Generate Wiki docs on release
2929
docs:

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.5
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "STKAudioKit",
8-
platforms: [.macOS(.v10_13), .iOS(.v11), .tvOS(.v11)],
8+
platforms: [.macOS(.v12), .iOS(.v13), .tvOS(.v13)],
99
products: [.library(name: "STKAudioKit", targets: ["STKAudioKit"])],
1010
dependencies: [
11-
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.3.0"),
12-
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.3.0"),
11+
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.5.0"),
12+
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.5.0"),
1313
],
1414
targets: [
1515
.target(name: "Stk", exclude: ["LICENSE"], resources: [.copy("rawwaves")]),

Sources/Stk/Skini.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "SKINItbl.h"
2828
#include <cstdlib>
2929
#include <sstream>
30+
#include <stdlib.h>
3031

3132
namespace stk {
3233

0 commit comments

Comments
 (0)