(cherry picked from commit 907c06b1ace4ee3ef116ac364435ffc4784af2cb) #2526
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: Redis Cache Tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'release-*' | |
| push: | |
| branches: | |
| - 'master' | |
| - 'beta' | |
| - 'release-*' | |
| jobs: | |
| test-redis: | |
| name: Test Redis Cache | |
| env: | |
| GIT_REF: ${{ github.ref }} | |
| GIT_SHA: ${{ github.sha }} | |
| POM_PATH: ./pom.xml | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| redis-version: [ 6 ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Java JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ vars.JAVA_VERSION }} | |
| distribution: 'temurin' | |
| - name: Setup Maven | |
| uses: stCarolas/[email protected] | |
| with: | |
| maven-version: ${{ vars.MAVEN_VERSION }} | |
| - name: Setup Maven settings | |
| uses: whelk-io/maven-settings-xml-action@v14 | |
| with: | |
| repositories: '[{ "id": "github-genexuslabs", "url": "https://maven.pkg.github.com/genexuslabs/Private-Maven-for-GX", "releases": { "enabled": "true" }, "snapshots": { "enabled": "true" } }]' | |
| servers: '[{ "id": "github-genexuslabs", "username": "genexusbot", "password": "${{ secrets.SECURE_TOKEN }}" }]' | |
| - name: Install | |
| run: mvn -B install --file $POM_PATH -DskipTests | |
| - name: Start Redis | |
| uses: supercharge/[email protected] | |
| with: | |
| redis-version: ${{ matrix.redis-version }} | |
| - name: Test | |
| env: | |
| EXECUTE_REDIS_TESTS: true | |
| run: mvn -B -pl gxcache-redis test --file $POM_PATH | |