Make the compatibility metadata variant check more specific #223
Workflow file for this run
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
name: Publish preview to web (S3) | |
on: [ push, workflow_dispatch ] | |
env: | |
branch-name: ${GITHUB_REF#refs/heads/} | |
bucket-name: 'dokka-snapshots' | |
jobs: | |
kotlinx-coroutines: | |
runs-on: ubuntu-latest | |
if: github.repository == 'Kotlin/dokka' | |
steps: | |
- name: Checkout dokka | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'maven' | |
- name: Document coroutines | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
arguments: :integration-tests:gradle:integrationTest --tests org.jetbrains.dokka.it.gradle.kotlin.CoroutinesGradleIntegrationTest --stacktrace "-Dorg.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=500m" | |
env: | |
DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/coroutines | |
- name: Configure AWS credentials for S3 access | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-central-1 | |
- name: Copy files to dokka's S3 bucket | |
run: ./integration-tests/aws_sync.sh s3://${{ env.bucket-name }} coroutines ../coroutines | |
- name: Print link | |
run: echo https://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/coroutines/${GITHUB_SHA::7}/index.html | |
kotilnx-serialization: | |
runs-on: ubuntu-latest | |
if: github.repository == 'Kotlin/dokka' | |
steps: | |
- name: Checkout dokka | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'maven' | |
- name: Document serialization | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
arguments: :integration-tests:gradle:integrationTest --tests org.jetbrains.dokka.it.gradle.kotlin.SerializationGradleIntegrationTest --stacktrace "-Dorg.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=500m" | |
env: | |
DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/serialization | |
- name: Configure AWS credentials for S3 access | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-central-1 | |
- name: Copy files to dokka's S3 bucket | |
run: ./integration-tests/aws_sync.sh s3://${{ env.bucket-name }} serialization ../serialization | |
- name: Print link | |
run: echo https://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/serialization/${GITHUB_SHA::7}/index.html | |
biojava: | |
runs-on: ubuntu-latest | |
if: github.repository == 'Kotlin/dokka' | |
steps: | |
- name: Checkout dokka | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'maven' | |
- name: Document biojava-core | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
arguments: :integration-tests:maven:integrationTest --tests org.jetbrains.dokka.it.maven.BiojavaIntegrationTest --stacktrace | |
env: | |
DOKKA_TEST_OUTPUT_PATH: /home/runner/work/dokka/biojava | |
- name: Configure AWS credentials for S3 access | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-central-1 | |
- name: Copy files to dokka's S3 bucket | |
run: ./integration-tests/aws_sync.sh s3://${{ env.bucket-name }} biojava ../biojava | |
- name: Print link | |
run: echo https://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/biojava/${GITHUB_SHA::7}/index.html |