Skip to content

Commit e722624

Browse files
authored
Merge pull request #87 from qiaoyuang/main
Add the emulator-build param into build.yml
2 parents 2bfb76f + 7969bf3 commit e722624

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
target: google_apis
8484
arch: x86_64
8585
profile: pixel_6
86+
emulator-build: 11698152
8687
force-avd-creation: false
8788
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
8889
disable-animations: false
@@ -95,6 +96,7 @@ jobs:
9596
target: google_apis
9697
arch: x86_64
9798
profile: pixel_6
99+
emulator-build: 11698152
98100
force-avd-creation: false
99101
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
100102
disable-animations: true
@@ -243,6 +245,7 @@ jobs:
243245
target: default
244246
arch: x86_64
245247
profile: pixel_2
248+
emulator-build: 11698152
246249
force-avd-creation: false
247250
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
248251
disable-animations: false
@@ -255,6 +258,7 @@ jobs:
255258
target: default
256259
arch: x86_64
257260
profile: pixel_2
261+
emulator-build: 11698152
258262
force-avd-creation: false
259263
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
260264
disable-animations: true

sqllin-driver/src/commonMain/kotlin/com/ctrip/sqllin/driver/Extension.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ internal fun DatabaseConnection.migrateIfNeeded(
9393
) = withTransaction {
9494
val initialVersion = withQuery("PRAGMA user_version;") {
9595
it.next()
96-
it.getInt(0) ?: 0
96+
it.getInt(0)
9797
}
9898
if (initialVersion == 0) {
9999
create(this)

0 commit comments

Comments
 (0)