chore: update workflow and pr template (#541) #635
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: Main CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: environment-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-latest-aurora-run-integration-tests: | |
concurrency: IntegrationTests | |
name: 'Run Integration Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Clone Repository' | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 50 | |
- name: 'Set up JDK 8' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 8 | |
- name: 'Configure AWS Credentials' | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
- name: 'Set up Temp AWS Credentials' | |
run: | | |
creds=($(aws sts get-session-token \ | |
--duration-seconds 7200 \ | |
--query 'Credentials.[AccessKeyId, SecretAccessKey, SessionToken]' \ | |
--output text \ | |
| xargs)); | |
echo "::add-mask::${creds[0]}" | |
echo "::add-mask::${creds[1]}" | |
echo "::add-mask::${creds[2]}" | |
echo "TEMP_AWS_ACCESS_KEY_ID=${creds[0]}" >> $GITHUB_ENV | |
echo "TEMP_AWS_SECRET_ACCESS_KEY=${creds[1]}" >> $GITHUB_ENV | |
echo "TEMP_AWS_SESSION_TOKEN=${creds[2]}" >> $GITHUB_ENV | |
- name: 'Run Integration Tests' | |
run: | | |
./gradlew --no-parallel --no-daemon test-integration-docker | |
env: | |
TEST_DB_CLUSTER_IDENTIFIER: ${{ secrets.TEST_DB_CLUSTER_IDENTIFIER }}-${{ github.run_id }} | |
TEST_USERNAME: ${{ secrets.TEST_USERNAME }} | |
TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }} | |
AWS_ACCESS_KEY_ID: ${{ env.TEMP_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ env.TEMP_AWS_SECRET_ACCESS_KEY }} | |
AWS_SESSION_TOKEN: ${{ env.TEMP_AWS_SESSION_TOKEN }} | |
- name: 'Archive junit results' | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'junit-report-integration-tests' | |
path: build/reports/tests/ | |
retention-days: 5 | |
ubuntu-latest-aurora-run-community-tests: | |
name: 'Run Community Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Clone Repository' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- name: 'Set up JDK 8' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 8 | |
- name: 'Run Community Tests' | |
run: | | |
./gradlew --no-parallel --no-daemon test-community-docker | |
- name: 'Archive junit results' | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'junit-report-community-tests' | |
path: build/reports/tests/ | |
retention-days: 5 |