Version bump: serialization 1.1.5→1.1.6, events 3.16.0→3.16.1 #117
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
# This workflow will be triggered if there will be changes to | |
# aws-lambda-java-runtime-interface-client package and it builds the package. | |
name: PR to runtime-interface-client | |
on: | |
pull_request: | |
branches: [ '*' ] | |
paths: | |
- 'aws-lambda-java-runtime-interface-client/**' | |
- '.github/workflows/runtime-interface-client_*.yml' | |
jobs: | |
smoke-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: corretto | |
- name: Build and install serialization dependency locally | |
working-directory: ./aws-lambda-java-serialization | |
run: mvn clean install -DskipTests | |
- name: Runtime Interface Client smoke tests - Run 'pr' target | |
working-directory: ./aws-lambda-java-runtime-interface-client | |
run: make pr | |
env: | |
IS_JAVA_8: true | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: corretto | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
- name: Available buildx platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: Build and install serialization dependency locally | |
working-directory: ./aws-lambda-java-serialization | |
run: mvn clean install -DskipTests | |
- name: Test Runtime Interface Client xplatform build - Run 'build' target | |
working-directory: ./aws-lambda-java-runtime-interface-client | |
run: make build | |
env: | |
IS_JAVA_8: true | |
- name: Save the built jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: aws-lambda-java-runtime-interface-client | |
path: ./aws-lambda-java-runtime-interface-client/target/aws-lambda-java-runtime-interface-client-*.jar | |
- name: Upload coverage to Codecov | |
if: env.CODECOV_TOKEN != null | |
uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |