Continuous Integration #375
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: Continuous Integration | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
schedule: | |
- cron: "5 6 * * *" | |
repository_dispatch: | |
types: [ liquibase-ci ] | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build & Package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Install liquibase-core 0-SNAPSHOT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn -B clean liquibase-sdk:install-snapshot -Dliquibase.sdk.branchSearch=MATCHING_BRANCHES,master | |
- name: Build and Package | |
run: mvn -B dependency:go-offline clean package -DskipTests=true | |
- name: Save Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: liquibase-maxdb-artifacts | |
path: | | |
target/*.jar | |
- name: Save Event File | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} | |
- name: Build Cache | |
uses: actions/[email protected] | |
with: | |
key: build-${{ github.run_number }}-${{ github.run_attempt }} | |
path: | | |
**/target/** | |
~/.m2/repository/org/liquibase/ | |
unit-test: | |
name: Test Java ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 8, 11, 17, 18 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build Cache | |
uses: actions/[email protected] | |
with: | |
key: build-${{ github.run_number }}-${{ github.run_attempt }} | |
path: | | |
**/target/** | |
~/.m2/repository/org/liquibase/ | |
- name: Run Tests | |
run: mvn -B jacoco:prepare-agent surefire:test | |
- name: Archive Test Results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-reports-jdk-${{ matrix.java }} | |
path: | | |
**/target/surefire-reports | |
**/target/jacoco.exec | |
# integration-test: | |
# name: Test Harness for Maxdb ${{ matrix.maxdb }} | |
# needs: build | |
# runs-on: ubuntu-latest | |
# | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# maxdb: [ "" ] | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# | |
# - name: Set up JDK | |
# uses: actions/setup-java@v2 | |
# with: | |
# java-version: 17 | |
# distribution: 'temurin' | |
# cache: 'maven' | |
# | |
# - name: Build Cache | |
# uses: actions/[email protected] | |
# with: | |
# key: build-${{ github.run_number }}-${{ github.run_attempt }} | |
# path: | | |
# **/target/** | |
# ~/.m2/repository/org/liquibase/ | |
# | |
# - name: Run Tests | |
# run: mvn -B jacoco:prepare-agent surefire:test -Dmaxdb.version=${{ matrix.maxdb }} | |
# | |
# - name: Archive Test Results | |
# if: ${{ always() }} | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: test-reports-maxdb-${{ matrix.maxdb }} | |
# path: | | |
# **/target/surefire-reports | |
# **/target/jacoco.exec | |
dependabot: | |
name: Merge dependabot | |
runs-on: ubuntu-latest | |
needs: unit-test | |
permissions: | |
contents: write | |
pull-requests: write | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Dependabot metadata | |
id: dependabot-metadata | |
uses: dependabot/[email protected] | |
- name: Approve patch and minor updates | |
if: ${{steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor'}} | |
run: | | |
gh pr merge --auto --merge "$PR_URL" | |
gh pr review $PR_URL --approve -b "I'm **approving** this pull request because **it includes a patch or minor update**" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |