Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build and test
on: [push, pull_request]
env:
IOS_SIMULATOR: "iPhone 16"
IOS_VERSION: "18.0"
IOS_VERSION: "18.4"
jobs:
build:
runs-on: macos-15
Expand Down
2 changes: 1 addition & 1 deletion Tests/SQLiteTests/Core/ConnectionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ class ConnectionTests: SQLiteTestCase {
}

// https://github.com/stephencelis/SQLite.swift/issues/1071
#if !os(Linux)
#if !(os(Linux) || os(Android))
func test_createFunction_withArrayArguments() throws {
db.createFunction("hello") { $0[0].map { "Hello, \($0)!" } }

Expand Down
4 changes: 2 additions & 2 deletions Tests/SQLiteTests/Schema/SchemaDefinitionsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ColumnDefinitionTests: XCTestCase {
defaultValue: .numericLiteral("123.123"), references: nil))
]

#if !os(Linux)
#if !(os(Linux) || os(Android))
override class var defaultTestSuite: XCTestSuite {
let suite = XCTestSuite(forTestCaseClass: ColumnDefinitionTests.self)

Expand Down Expand Up @@ -183,7 +183,7 @@ class IndexDefinitionTests: XCTestCase {
"CREATE INDEX IF NOT EXISTS \"index_tests\" ON \"tests\" (\"test_column\")")
]

#if !os(Linux)
#if !(os(Linux) || os(Android))
override class var defaultTestSuite: XCTestSuite {
let suite = XCTestSuite(forTestCaseClass: IndexDefinitionTests.self)

Expand Down
2 changes: 1 addition & 1 deletion Tests/SQLiteTests/Typed/CustomAggregationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import SQLite3
#endif

// https://github.com/stephencelis/SQLite.swift/issues/1071
#if !os(Linux)
#if !(os(Linux) || os(Android))

class CustomAggregationTests: SQLiteTestCase {
override func setUpWithError() throws {
Expand Down
2 changes: 1 addition & 1 deletion Tests/SQLiteTests/Typed/CustomFunctionsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import XCTest
import SQLite

// https://github.com/stephencelis/SQLite.swift/issues/1071
#if !os(Linux)
#if !(os(Linux) || os(Android))

class CustomFunctionNoArgsTests: SQLiteTestCase {
typealias FunctionNoOptional = () -> SQLite.Expression<String>
Expand Down