-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update kotlin monorepo to v2.0.21 (#106)
* Update kotlin monorepo to v2.0.21 * Remove workaround for HiddenFromObjC * Remove workaround for KT-70901 * Update dependency com.google.devtools.ksp to v2.0.21-1.0.26 (#107) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Kotlin to 2.1.0 * Update the package lock for PRs when needed * Enable incremental wasm compilation * Use kotlinx browser artifact * Fix missed detekt violations * Update VICE * Enable KLIB cross compilation * Workaround for KSP not supporting klib cross compilation - // google/ksp#2243 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Eliezer Graber <[email protected]>
- Loading branch information
1 parent
5ad20d1
commit 6cc53fe
Showing
47 changed files
with
491 additions
and
575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Upgrade Package Lock | ||
|
||
on: | ||
pull_request | ||
|
||
jobs: | ||
upgrade_package_lock: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
token: ${{ secrets.PUSH_PAT }} | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version-file: .ci-java-version | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
with: | ||
gradle-version: wrapper | ||
|
||
- name: Run assemble task | ||
run: ./gradlew kotlinUpgradePackageLock --rerun-tasks | ||
|
||
- name: Commit package lock changes | ||
id: commit_package_lock_changes | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: "['kotlin-js-store/package-lock.json']" | ||
default_author: github_actions | ||
message: "Upgrade package lock" | ||
|
||
env: | ||
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx16g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=1024m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.