FINERACT-2241: New command processing - Cache Management (org.apache.fineract.infrastructure.cache) #5989
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: Fineract Tests | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| IMAGE_NAME: fineract | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'zulu' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 # v4.4.1 | |
| - name: Build the image | |
| run: ./gradlew --no-daemon --console=plain :fineract-provider:jibDockerBuild -Djib.to.image=$IMAGE_NAME -x test -x cucumber | |
| - name: Start the Fineract stack | |
| run: docker compose -f docker-compose-postgresql-test-activemq.yml up -d | |
| - name: Check the stack | |
| run: docker ps | |
| - name: Check health Manager | |
| run: curl -f -k --retry 60 --retry-all-errors --connect-timeout 30 --retry-delay 30 https://localhost:8443/fineract-provider/actuator/health | |
| - name: Execute tests | |
| env: | |
| BASE_URL: https://localhost:8443 | |
| TEST_USERNAME: mifos | |
| TEST_PASSWORD: password | |
| TEST_STRONG_PASSWORD: A1b2c3d4e5f$ | |
| TEST_TENANT_ID: default | |
| INITIALIZATION_ENABLED: true | |
| EVENT_VERIFICATION_ENABLED: true | |
| ACTIVEMQ_BROKER_URL: tcp://localhost:61616 | |
| ACTIVEMQ_TOPIC_NAME: events | |
| run: ./gradlew --no-daemon --console=plain :fineract-e2e-tests-runner:cucumber --tags 'not @Skip' allureReport |