Fix navigation code samples #151
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
# On pushes to main, run tests on all supported platforms. If all tests pass, then publish release artifacts and | |
# update Orchid documentation site. | |
name: 'Push to `dev` (Check Dev Branches)' | |
on: | |
push: | |
branches: ['dev'] | |
env: | |
GITHUB_ACTOR: '${{ github.actor }}' | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
OSSRH_USERNAME: '${{ secrets.OSSRH_USERNAME }}' | |
OSSRH_PASSWORD: '${{ secrets.OSSRH_PASSWORD }}' | |
STAGING_PROFILE_ID: '${{ secrets.STAGING_PROFILE_ID }}' | |
SIGNING_KEY_ID: '${{ secrets.SIGNING_KEY_ID }}' | |
SIGNING_KEY: '${{ secrets.SIGNING_KEY }}' | |
SIGNING_PASSWORD: '${{ secrets.SIGNING_PASSWORD }}' | |
JB_SIGNING_KEY: '${{ secrets.JB_SIGNING_KEY }}' | |
JB_CHAIN: '${{ secrets.JB_CHAIN }}' | |
JB_PASSPHRASE: '${{ secrets.JB_PASSPHRASE }}' | |
JB_MARKETPLACE_TOKEN: '${{ secrets.JB_MARKETPLACE_TOKEN }}' | |
jobs: | |
ktlintCheck: | |
name: 'KtlintCheck on macos-latst' | |
runs-on: 'macos-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 # all commit history and tags | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: 'actions/setup-java@v2' | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: 'Run checks with Gradle' | |
run: './gradlew ktlintCheck --no-daemon --stacktrace' | |
unitTest: | |
needs: ['ktlintCheck'] | |
strategy: | |
matrix: | |
config: | |
- { target: 'testDebugUnitTest', os: 'ubuntu-latest', java: 17 } | |
- { target: 'testReleaseUnitTest', os: 'ubuntu-latest', java: 17 } | |
- { target: 'iosSimulatorArm64Test', os: 'macos-latest', java: 17 } | |
- { target: 'iosX64Test', os: 'macos-latest', java: 17 } | |
- { target: 'jsTest', os: 'ubuntu-latest', java: 17 } | |
- { target: 'jvmTest', os: 'ubuntu-latest', java: 17 } | |
- { target: 'wasmJsTest', os: 'ubuntu-latest', java: 17 } | |
name: 'Run ${{ matrix.config.target }} on ${{ matrix.config.os }} JDK ${{ matrix.config.java }}' | |
runs-on: '${{ matrix.config.os }}' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 # all commit history and tags | |
- uses: 'actions/setup-java@v2' | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.config.java }} | |
- run: './gradlew ${{ matrix.config.target }} --stacktrace' | |
publishSnapshotArtifacts: | |
needs: ['unitTest'] | |
strategy: | |
matrix: | |
config: | |
- { target: 'AndroidDebug', os: 'ubuntu-latest', java: 17 } | |
- { target: 'AndroidRelease', os: 'ubuntu-latest', java: 17 } | |
- { target: 'IosArm64', os: 'macos-latest', java: 17 } | |
- { target: 'IosSimulatorArm64', os: 'macos-latest', java: 17 } | |
- { target: 'IosX64', os: 'macos-latest', java: 17 } | |
- { target: 'Js', os: 'ubuntu-latest', java: 17 } | |
- { target: 'Jvm', os: 'ubuntu-latest', java: 17 } | |
- { target: 'KotlinMultiplatform', os: 'ubuntu-latest', java: 17 } | |
- { target: 'WasmJs', os: 'ubuntu-latest', java: 17 } | |
name: 'Publish ${{ matrix.config.target }} snapshot artifacts on ${{ matrix.config.os }} JDK ${{ matrix.config.java }}' | |
runs-on: '${{ matrix.config.os }}' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 # all commit history and tags | |
- uses: 'actions/setup-java@v2' | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.config.java }} | |
- run: './gradlew publish${{ matrix.config.target }}PublicationToMavenCentralSnapshotsRepository' |