misc: merge from main #4496
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - '*-main' | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| # Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed | |
| concurrency: | |
| group: ci-pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| RUN: ${{ github.run_id }}-${{ github.run_number }} | |
| GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
| jobs: | |
| jvm: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # we build with a specific JDK version but source/target compatibility should ensure the jar is usable by | |
| # the target versions we want to support | |
| java-version: | |
| - 8 | |
| - 11 | |
| - 17 | |
| - 21 | |
| steps: | |
| - name: Set start timestamp | |
| id: start | |
| run: printf 'timestamp=%(%s)T\n' >> "$GITHUB_OUTPUT" | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 17 | |
| cache: 'gradle' | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
| aws-region: us-west-2 | |
| - name: Setup kat | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main | |
| - name: Configure Gradle | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
| - name: Test | |
| shell: bash | |
| run: | | |
| ./gradlew -Ptest.java.version=${{ matrix.java-version }} jvmTest --stacktrace | |
| - name: Calculate duration | |
| id: end | |
| if: always() | |
| run: | | |
| printf -v now '%(%s)T' | |
| duration=$(( now - ${{ steps.start.outputs.timestamp }} )) | |
| echo "duration=$duration" >> "$GITHUB_OUTPUT" | |
| - name: Emit metrics | |
| if: always() # run this step even if previous steps failed or the job is canceled | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/emit-metrics@main | |
| with: | |
| namespace: CI Metrics | |
| dimensions: | | |
| Product=smithy-kotlin | |
| JobName=${{ github.job }}(${{ matrix.java-version }}) | |
| Branch=${{ github.base_ref || github.ref_name }} | |
| metrics: | | |
| WorkflowSucceeded:${{ job.status == 'success' && '1' || '0' }}:Count | |
| WorkflowDuration:${{ steps.end.outputs.duration }}:Seconds | |
| all-platforms: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| steps: | |
| - name: Set start timestamp | |
| id: start | |
| shell: bash | |
| run: echo "timestamp=$(date +%s)" >> "$GITHUB_OUTPUT" | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 17 | |
| cache: 'gradle' | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
| aws-region: us-west-2 | |
| - name: Setup kat | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main | |
| - name: Configure Gradle | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
| - name: Test | |
| shell: bash | |
| run: | | |
| echo "kotlinWarningsAsErrors=true" >> $GITHUB_WORKSPACE/local.properties | |
| ./gradlew apiCheck | |
| ./gradlew test jvmTest | |
| - name: Calculate duration | |
| id: end | |
| if: always() | |
| shell: bash | |
| run: | | |
| now=$(date +%s) | |
| duration=$(( now - ${{ steps.start.outputs.timestamp }} )) | |
| echo "duration=$duration" >> "$GITHUB_OUTPUT" | |
| - name: Emit metrics | |
| if: always() # run this step even if previous steps failed or the job is canceled | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/emit-metrics@main | |
| with: | |
| namespace: CI Metrics | |
| dimensions: | | |
| Product=smithy-kotlin | |
| JobName=${{ github.job }}(${{ matrix.os }}) | |
| Branch=${{ github.base_ref || github.ref_name }} | |
| metrics: | | |
| WorkflowSucceeded:${{ job.status == 'success' && '1' || '0' }}:Count | |
| WorkflowDuration:${{ steps.end.outputs.duration }}:Seconds | |
| - name: Save Test Reports | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-reports-${{ matrix.os }} | |
| path: '**/build/reports' | |
| protocol-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set start timestamp | |
| id: start | |
| run: printf 'timestamp=%(%s)T\n' >> "$GITHUB_OUTPUT" | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 17 | |
| cache: 'gradle' | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
| aws-region: us-west-2 | |
| - name: Setup kat | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main | |
| - name: Configure Gradle | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
| - name: Test | |
| shell: bash | |
| run: | | |
| ./gradlew publishToMavenLocal | |
| ./gradlew testAllProtocols | |
| - name: Calculate duration | |
| id: end | |
| if: always() | |
| run: | | |
| printf -v now '%(%s)T' | |
| duration=$(( now - ${{ steps.start.outputs.timestamp }} )) | |
| echo "duration=$duration" >> "$GITHUB_OUTPUT" | |
| - name: Emit metrics | |
| if: always() # run this step even if previous steps failed or the job is canceled | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/emit-metrics@main | |
| with: | |
| namespace: CI Metrics | |
| dimensions: | | |
| Product=smithy-kotlin | |
| JobName=${{ github.job }} | |
| Branch=${{ github.base_ref || github.ref_name }} | |
| metrics: | | |
| WorkflowSucceeded:${{ job.status == 'success' && '1' || '0' }}:Count | |
| WorkflowDuration:${{ steps.end.outputs.duration }}:Seconds | |
| downstream: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set start timestamp | |
| id: start | |
| run: printf 'timestamp=%(%s)T\n' >> "$GITHUB_OUTPUT" | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| path: 'smithy-kotlin' | |
| - name: Checkout tools | |
| uses: actions/checkout@v4 | |
| with: | |
| path: 'aws-kotlin-repo-tools' | |
| repository: 'aws/aws-kotlin-repo-tools' | |
| ref: '0.2.3' | |
| sparse-checkout: | | |
| .github | |
| - name: Checkout aws-sdk-kotlin | |
| uses: ./aws-kotlin-repo-tools/.github/actions/checkout-head | |
| with: | |
| # smithy-kotlin is checked out as a sibling dir which will automatically make it an included build | |
| path: 'aws-sdk-kotlin' | |
| repository: 'aws/aws-sdk-kotlin' | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
| aws-region: us-west-2 | |
| - name: Setup kat | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main | |
| - name: Configure Gradle - smithy-kotlin | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
| with: | |
| working-directory: ./smithy-kotlin | |
| - name: Configure Gradle - aws-sdk-kotlin | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
| with: | |
| working-directory: ./aws-sdk-kotlin | |
| - name: Configure JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 17 | |
| cache: 'gradle' | |
| - name: Build and Test aws-sdk-kotlin downstream | |
| run: | | |
| # TODO - JVM only | |
| cd $GITHUB_WORKSPACE/smithy-kotlin | |
| ./gradlew --parallel publishToMavenLocal | |
| SMITHY_KOTLIN_RUNTIME_VERSION=$(grep sdkVersion= gradle.properties | cut -d = -f 2) | |
| SMITHY_KOTLIN_CODEGEN_VERSION=$(grep codegenVersion= gradle.properties | cut -d = -f 2) | |
| cd $GITHUB_WORKSPACE/aws-sdk-kotlin | |
| # replace smithy-kotlin-runtime-version and smithy-kotlin-codegen-version to be | |
| # whatever we are testing such that the protocol test projects don't fail with a | |
| # version that doesn't exist locally or in maven central. Otherwise the generated | |
| # protocol test projects will use whatever the SDK thinks the version of | |
| # smithy-kotlin should be | |
| sed -i "s/smithy-kotlin-runtime-version = .*$/smithy-kotlin-runtime-version = \"$SMITHY_KOTLIN_RUNTIME_VERSION\"/" gradle/libs.versions.toml | |
| sed -i "s/smithy-kotlin-codegen-version = .*$/smithy-kotlin-codegen-version = \"$SMITHY_KOTLIN_CODEGEN_VERSION\"/" gradle/libs.versions.toml | |
| ./gradlew --parallel publishToMavenLocal | |
| ./gradlew test jvmTest | |
| ./gradlew testAllProtocols | |
| - name: Calculate duration | |
| id: end | |
| if: always() | |
| run: | | |
| printf -v now '%(%s)T' | |
| duration=$(( now - ${{ steps.start.outputs.timestamp }} )) | |
| echo "duration=$duration" >> "$GITHUB_OUTPUT" | |
| - name: Emit metrics | |
| if: always() # run this step even if previous steps failed or the job is canceled | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/emit-metrics@main | |
| with: | |
| namespace: CI Metrics | |
| dimensions: | | |
| Product=smithy-kotlin | |
| JobName=${{ github.job }} | |
| Branch=${{ github.base_ref || github.ref_name }} | |
| metrics: | | |
| WorkflowSucceeded:${{ job.status == 'success' && '1' || '0' }}:Count | |
| WorkflowDuration:${{ steps.end.outputs.duration }}:Seconds |