Flyway upgrade #3199
Workflow file for this run
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
| name: Integration tests on database | |
| on: | |
| pull_request: | |
| branches: [ develop ] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| container-test-job: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| database: [ 'postgresql-15', 'postgresql-16', 'postgresql-17', 'postgresql-18', 'mysql-8.0', 'mysql-8.4', 'mysql-9' ] | |
| container: | |
| image: cfidentity/uaa-${{ matrix.database }} | |
| volumes: | |
| - ${{ github.workspace }}:/root/uaa | |
| options: --privileged --tty --interactive --shm-size=1G | |
| steps: | |
| - name: Set env | |
| run: echo "PROFILE=$(echo ${{ matrix.database }} | sed 's/-[0-9.]*//g')" >> $GITHUB_ENV | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Integration tests on container | |
| id: testrun | |
| run: /root/uaa/scripts/integration_tests.sh ${PROFILE},default boot | |
| continue-on-error: true | |
| - name: Test result upload | |
| uses: actions/upload-artifact@v5 | |
| if: steps.testrun.outcome == 'failure' | |
| with: | |
| name: Server test | |
| path: /root/uaa/*/build/reports/tests/integrationTest/ | |
| - name: Check error Result | |
| run: exit 1 | |
| if: steps.testrun.outcome == 'failure' |