diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/gradle-test.pr.yml | 16 | ||||
-rw-r--r-- | .github/workflows/s3-snapshots.yml | 149 |
2 files changed, 165 insertions, 0 deletions
diff --git a/.github/workflows/gradle-test.pr.yml b/.github/workflows/gradle-test.pr.yml new file mode 100644 index 00000000..e0e7944e --- /dev/null +++ b/.github/workflows/gradle-test.pr.yml @@ -0,0 +1,16 @@ +name: CI + +on: pull_request + +jobs: + test: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 11 + - run: ./gradlew clean test --stacktrace diff --git a/.github/workflows/s3-snapshots.yml b/.github/workflows/s3-snapshots.yml new file mode 100644 index 00000000..354ee20f --- /dev/null +++ b/.github/workflows/s3-snapshots.yml @@ -0,0 +1,149 @@ +name: S3-snapshots + +on: push + +env: + branch-name: ${GITHUB_REF#refs/heads/} + bucket-name: 'dokka-snapshots' + +jobs: + coroutines: + runs-on: ubuntu-latest + steps: + - name: Checkout dokka + uses: actions/checkout@v2 + with: + path: dokka + + - uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Publish dokka locally + run: ./gradlew clean publishToMavenLocal --stacktrace + working-directory: ./dokka + + - name: Get current dokka version + run: echo "::set-env name=DOKKA_VERSION::`./gradlew :properties | grep '^version:.*' | cut -d ' ' -f 2`" + working-directory: ./dokka + + - name: Checkout coroutines + uses: actions/checkout@v2 + with: + repository: 'kamildoleglo/kotlinx.coroutines' + ref: 'aws' + path: coroutines + + - name: Document coroutines + run: ./gradlew clean dokkaHtml :dokkaHtmlMultimodule -Pdokka_version=$DOKKA_VERSION --stacktrace + working-directory: ./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: | + aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/prev + aws s3 --recursive mv s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/latest s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/prev + aws s3 sync ./coroutines/build/dokka s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/latest + - name: Print link + run: echo http://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/coroutines/latest/kotlinx-coroutines-/index.html + + stdlib: + runs-on: ubuntu-latest + steps: + - name: Checkout dokka + uses: actions/checkout@v2 + with: + path: dokka + + - uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Publish dokka locally + run: ./gradlew clean publishToMavenLocal --stacktrace + working-directory: ./dokka + + - name: Get current dokka version + run: echo "::set-env name=DOKKA_VERSION::`./gradlew :properties | grep '^version:.*' | cut -d ' ' -f 2`" + working-directory: ./dokka + + - name: Checkout stdlib + uses: actions/checkout@v2 + with: + repository: 'kamildoleglo/kotlin-dokka-stdlib' + ref: 'aws' + path: stdlib + + - name: Document stdlib + run: ./gradlew clean callDokka -Pdokka_version=$DOKKA_VERSION --stacktrace + working-directory: ./stdlib + + - 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: | + aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/prev + aws s3 --recursive mv s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/latest s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/prev + aws s3 sync ./stdlib/build/dokka s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/latest + + - name: Print link + run: echo http://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/stdlib/latest/kotlin-stdlib/kotlin-stdlib/index.html + + biojava: + runs-on: ubuntu-latest + steps: + - name: Checkout dokka + uses: actions/checkout@v2 + with: + path: dokka + + - uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Publish dokka locally + run: ./gradlew clean publishToMavenLocal --stacktrace + working-directory: ./dokka + + - name: Get current dokka version + run: echo "::set-env name=DOKKA_VERSION::`./gradlew :properties | grep '^version:.*' | cut -d ' ' -f 2`" + working-directory: ./dokka + + - name: Checkout biojava + uses: actions/checkout@v2 + with: + repository: 'kamildoleglo/biojava' + ref: 'aws' + path: biojava + + - name: Document biojava-core + run: mvn site -pl biojava-core "-Ddokka-version=$DOKKA_VERSION" + working-directory: ./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: | + aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ env.branch-name }}/biojava/prev + aws s3 --recursive mv s3://${{ env.bucket-name }}/${{ env.branch-name }}/biojava/latest s3://${{ env.bucket-name }}/${{ env.branch-name }}/biojava/prev + aws s3 sync ./biojava/biojava-core/target/dokkaJavadoc s3://${{ env.bucket-name }}/${{ env.branch-name }}/biojava/latest + + - name: Print link + run: echo http://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/biojava/latest/index.html + |