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
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
with:
path: ~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down Expand Up @@ -71,10 +71,10 @@ jobs:
with:
path: ~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
path: ~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down
23 changes: 13 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ jobs:
matrix:
include:
- os: macos-latest
name: macos-watchos-tvos
name: watchos
targets: watchosSimulatorArm64Test tvosSimulatorArm64Test
- os: macos-latest
name: mac-ios-macos
targets: iosSimulatorArm64Test macosArm64Test
name: tvos
targets: tvosSimulatorArm64Test
- os: macos-latest
name: mac-jvm
targets: jvmTest
name: ios
targets: iosSimulatorArm64Test
- os: macos-latest
name: macos
targets: jvmTest macosArm64Test
- os: ubuntu-latest
name: ubuntu
targets: testDebugUnitTest testReleaseUnitTest jvmTest lintKotlin
Expand All @@ -32,7 +35,7 @@ jobs:
targets: jvmTest
runs-on: ${{ matrix.os }}
name: Test ${{ matrix.name }}
timeout-minutes: 20
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
Expand All @@ -42,10 +45,10 @@ jobs:
with:
path: ~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down Expand Up @@ -90,10 +93,10 @@ jobs:
with:
path: ~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ POM_DEVELOPER_URL=https://powersync.com/
[email protected]
#Dokka
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
# We don't need cross-compilation, and it causes compilation errors on Linux.
kotlin.native.enableKlibsCrossCompilation=false
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ android-minSdk = "24"
android-targetSdk = "36"
android-compileSdk = "36"
configurationAnnotations = "0.10.6"
dokkaBase = "2.0.0"
dokkaBase = "2.1.0"
gradleDownloadTask = "5.6.0"
java = "17"

# Dependencies
kermit = "2.0.8"
kotlin = "2.2.10" # Note: When updating, always update the first part of the ksp version too
ksp = "2.2.10-2.0.2"
kotlin = "2.2.21"
ksp = "2.3.3"
coroutines = "1.10.2"
kotlinx-datetime = "0.7.1"
serialization = "1.9.0"
Expand All @@ -37,10 +37,10 @@ sqldelight = "2.1.0"

# plugins
android-gradle-plugin = "8.12.1"
skie = "0.10.6"
skie = "0.10.8"
maven-publish = "0.34.0"
download-plugin = "5.6.0"
mokkery = "2.9.0"
mokkery = "3.0.0"
kotlinter = "5.2.0"
keeper = "0.16.1"
atomicfu = "0.29.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down