-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- New dictionary API - Full extra-currency support - CellBuilder/CellSlice optimizations - CellContext API - MessageLayout API
- Loading branch information
1 parent
f0502a1
commit 192c55c
Showing
227 changed files
with
3,177 additions
and
901 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 |
---|---|---|
@@ -1,57 +1,57 @@ | ||
name: Release | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
if: "!contains(github.event.commits[0].message, '[skip ci]')" | ||
strategy: | ||
matrix: | ||
include: | ||
- os: macos-latest | ||
gradle_args: assemble publishIosX64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishIosArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishIosSimulatorArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishTvosX64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishTvosArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishTvosSimulatorArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishWatchosArm32PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishWatchosArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishWatchosX64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishWatchosSimulatorArm64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishMacosX64PublicationToSonatypeRepository | ||
- os: macos-latest | ||
gradle_args: assemble publishMacosArm64PublicationToSonatypeRepository | ||
- os: ubuntu-latest | ||
gradle_args: assemble publishKotlinMultiplatformPublicationToSonatypeRepository publishJvmPublicationToSonatypeRepository publishLinuxX64PublicationToSonatypeRepository publishLinuxArm64PublicationToSonatypeRepository publishMingwX64PublicationToSonatypeRepository | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout project sources | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: liberica | ||
java-version: 8 | ||
- name: Build using gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: ${{ matrix.gradle_args }} | ||
env: | ||
SIGNING_SECRET_KEY: ${{ secrets.SIGNING_SECRET_KEY }} | ||
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | ||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
#name: Release | ||
#on: | ||
# push: | ||
# branches: | ||
# - main | ||
# | ||
#jobs: | ||
# build: | ||
# if: "!contains(github.event.commits[0].message, '[skip ci]')" | ||
# strategy: | ||
# matrix: | ||
# include: | ||
# - os: macos-latest | ||
# gradle_args: assemble publishIosX64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishIosArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishIosSimulatorArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishTvosX64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishTvosArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishTvosSimulatorArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishWatchosArm32PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishWatchosArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishWatchosX64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishWatchosSimulatorArm64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishMacosX64PublicationToSonatypeRepository | ||
# - os: macos-latest | ||
# gradle_args: assemble publishMacosArm64PublicationToSonatypeRepository | ||
# - os: ubuntu-latest | ||
# gradle_args: assemble publishKotlinMultiplatformPublicationToSonatypeRepository publishJvmPublicationToSonatypeRepository publishLinuxX64PublicationToSonatypeRepository publishLinuxArm64PublicationToSonatypeRepository publishMingwX64PublicationToSonatypeRepository | ||
# | ||
# runs-on: ${{ matrix.os }} | ||
# steps: | ||
# - name: Checkout project sources | ||
# uses: actions/checkout@v3 | ||
# - uses: actions/setup-java@v3 | ||
# with: | ||
# distribution: liberica | ||
# java-version: 8 | ||
# - name: Build using gradle | ||
# uses: gradle/gradle-build-action@v2 | ||
# with: | ||
# arguments: ${{ matrix.gradle_args }} | ||
# env: | ||
# SIGNING_SECRET_KEY: ${{ secrets.SIGNING_SECRET_KEY }} | ||
# SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | ||
# OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
# OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -28,3 +28,5 @@ local.properties | |
|
||
# Ignore Gradle build output directory | ||
build | ||
|
||
.jreleaser/config.toml |
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.