Skip to content

Commit

Permalink
change jobs to do lts and latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlamz committed Mar 7, 2024
1 parent cef5e7e commit 54d1df5
Showing 1 changed file with 59 additions and 1 deletion.
60 changes: 59 additions & 1 deletion .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
all-integration-tests:
all-integration-tests-latest:
name: 'Run Aurora integration tests'
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -68,3 +68,61 @@ jobs:
name: html-summary-report
path: ./wrapper/build/report
retention-days: 5

all-integration-tests-lts:
name: 'Run Aurora integration 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: '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 21600 \
--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-all-aurora
env:
AURORA_CLUSTER_DOMAIN: ${{ secrets.DB_CONN_SUFFIX }}
AURORA_DB_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
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 }}
AURORA_MYSQL_DB_ENGINE_VERSION: "lts"
AURORA_PG_ENGINE_VERSION: "lts"
- name: 'Archive junit results'
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-report
path: ./wrapper/build/test-results
retention-days: 5
- name: 'Archive html summary report'
if: always()
uses: actions/upload-artifact@v4
with:
name: html-summary-report
path: ./wrapper/build/report
retention-days: 5

0 comments on commit 54d1df5

Please sign in to comment.