.github/workflows/github-actions.yml #136
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
| # Maven | |
| # Build your Java project and run tests with Apache Maven. | |
| # Add steps that analyze code, save build artifacts, deploy, and more: | |
| # https://docs.microsoft.com/azure/devops/pipelines/languages/java | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - '*' | |
| paths-ignore: | |
| - README.md | |
| - gh-pages | |
| tags: | |
| - '*' | |
| schedule: | |
| - cron: '0 19 * * 0' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| dBTestCompareVersion: 1.9.6 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Docker Compose and build docker image | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y docker-compose | |
| - uses: cedx/setup-ant@v2 | |
| - shell: pwsh | |
| run: | | |
| $tags = git tag --sort=-creatordate | |
| $tag = $tags[0] | |
| Write-Host "##vso[task.setvariable variable=dBTestCompareVersion]$tag" | |
| if: startsWith(github.ref, 'refs/tags/') | |
| - shell: pwsh | |
| run: | | |
| ./setDBTestCompareVersion.ps1 | |
| - shell: pwsh | |
| run: | | |
| ./downloadBackupAndJDBCDrivers.ps1 | |
| - run: docker-compose -f "./docker/docker-compose.yml" up -d | |
| - shell: pwsh | |
| run: | | |
| ./restoreBackup.ps1 | |
| - name: Run ant build | |
| run: ant -noinput -buildfile ./deploy/build.xml -Dconfig=DEV02 compile tokens.copy.files testdbq.run | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v4 | |
| if: success() || failure() | |
| with: | |
| report_paths: '**/TEST-*.xml' | |
| - shell: pwsh | |
| run: | | |
| ./copyArtifact.ps1 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: DBTestCompare${{ env.dBTestCompareVersion }}.TestResults.${{github.run_number}} | |
| path: ./target/test-output | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: DBTestCompare${{ env.dBTestCompareVersion }}.TestDefinitionsResults.${{github.run_number}} | |
| path: ./target/test-definitions | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: DBTestCompare${{ env.dBTestCompareVersion }} | |
| path: ./release | |
| - shell: pwsh | |
| run: compress-archive -path "./release" ./release/DBTestCompare${{ env.dBTestCompareVersion }}.zip | |
| - shell: pwsh | |
| run: Copy './release/DBTestCompare${{ env.dBTestCompareVersion }}.zip' '${{ github.workspace }}' | |
| - shell: bash | |
| run: | | |
| upload_url=$(curl -sL https://api.github.com/repos/Accenture/DBTestCompare/releases/latest | jq -r '.upload_url') | |
| echo UPLOAD_URL=$upload_url >> $GITHUB_ENV | |
| - name: 'Upload linux artifact to Release' | |
| run: gh release upload ${{ env.dBTestCompareVersion }} ./release/DBTestCompare${{ env.dBTestCompareVersion }}.zip | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| if: startsWith(github.ref, 'refs/tags/') |