File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Build and test
22on : [push, pull_request]
33env :
44 IOS_SIMULATOR : " iPhone 16"
5- IOS_VERSION : " 18.0 "
5+ IOS_VERSION : " 18.4 "
66jobs :
77 build :
88 runs-on : macos-15
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ class ConnectionTests: SQLiteTestCase {
374374 }
375375
376376 // https://github.com/stephencelis/SQLite.swift/issues/1071
377- #if !os(Linux)
377+ #if !( os(Linux) || os(Android) )
378378 func test_createFunction_withArrayArguments( ) throws {
379379 db. createFunction ( " hello " ) { $0 [ 0 ] . map { " Hello, \( $0) ! " } }
380380
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class ColumnDefinitionTests: XCTestCase {
3232 defaultValue: . numericLiteral( " 123.123 " ) , references: nil ) )
3333 ]
3434
35- #if !os(Linux)
35+ #if !( os(Linux) || os(Android) )
3636 override class var defaultTestSuite : XCTestSuite {
3737 let suite = XCTestSuite ( forTestCaseClass: ColumnDefinitionTests . self)
3838
@@ -183,7 +183,7 @@ class IndexDefinitionTests: XCTestCase {
183183 " CREATE INDEX IF NOT EXISTS \" index_tests \" ON \" tests \" ( \" test_column \" ) " )
184184 ]
185185
186- #if !os(Linux)
186+ #if !( os(Linux) || os(Android) )
187187 override class var defaultTestSuite : XCTestSuite {
188188 let suite = XCTestSuite ( forTestCaseClass: IndexDefinitionTests . self)
189189
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import SQLite3
1414#endif
1515
1616// https://github.com/stephencelis/SQLite.swift/issues/1071
17- #if !os(Linux)
17+ #if !( os(Linux) || os(Android) )
1818
1919class CustomAggregationTests : SQLiteTestCase {
2020 override func setUpWithError( ) throws {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import XCTest
22import SQLite
33
44// https://github.com/stephencelis/SQLite.swift/issues/1071
5- #if !os(Linux)
5+ #if !( os(Linux) || os(Android) )
66
77class CustomFunctionNoArgsTests : SQLiteTestCase {
88 typealias FunctionNoOptional = ( ) -> SQLite . Expression < String >
You can’t perform that action at this time.
0 commit comments