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: integration-tests | |
on: | |
pull_request: | |
pull_request_review: | |
types: | |
- submitted | |
env: | |
GRADLE_OPTS: "-Xmx6g -Dorg.gradle.daemon=false" | |
jobs: | |
shouldRun: | |
name: checks to ensure we should run | |
runs-on: ubuntu-22.04 | |
outputs: | |
shouldRun: ${{steps.shouldRun.outputs.result}} | |
steps: | |
- name: required check | |
id: shouldRun | |
uses: actions/[email protected] | |
env: | |
# fun fact, this changes based on incoming event, it will be different when we run this on pushes to main | |
RELEVANT_SHA: ${{ github.event.pull_request.head.sha || github.sha }} | |
with: | |
script: | | |
const { RELEVANT_SHA } = process.env; | |
const { data: { statuses } } = await github.rest.repos.getCombinedStatusForRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: RELEVANT_SHA, | |
}); | |
const intTested = statuses && statuses.filter(({ context }) => context === 'integration-tests'); | |
const alreadyRun = intTested && intTested.find(({ state }) => state === 'success') > 0; | |
const { data: reviews } = await github.rest.pulls.listReviews({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number, | |
}); | |
const approvingReviews = reviews && reviews.filter(review => review.state === 'APPROVED'); | |
const shouldRun = !alreadyRun && github.actor != 'dependabot[bot]' && (approvingReviews.length > 0); | |
console.log("tests should be run = %j", shouldRun); | |
console.log("alreadyRun = %j", alreadyRun); | |
console.log("approvingReviews = %j", approvingReviews.length); | |
return shouldRun; | |
integration-tests: | |
runs-on: ubuntu-22.04 | |
needs: shouldRun | |
if: ${{ needs.shouldRun.outputs.shouldRun == 'true' }} | |
permissions: | |
statuses: write | |
checks: write | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Set up Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: setup gradle | |
uses: gradle/[email protected] | |
- name: run integration tests | |
run: ./gradlew integrationTest compileJmh -Dorg.gradle.parallel=true -Dorg.gradle.caching=true | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: (success() || failure()) | |
with: | |
report_paths: '**/build/test-results/integrationTest/TEST-*.xml' | |