From 40497175d93880734d8a3f1b03f69eedda0dbd24 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sun, 22 Nov 2020 15:03:46 +0000 Subject: [PATCH] Add workflow for redis tests --- .github/workflows/redis.yml | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/redis.yml diff --git a/.github/workflows/redis.yml b/.github/workflows/redis.yml new file mode 100644 index 00000000..bac31b58 --- /dev/null +++ b/.github/workflows/redis.yml @@ -0,0 +1,45 @@ +name: Redis + +on: + workflow_dispatch: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + services: + mongodb: + image: redis + ports: + - 6379:6379 + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + java: [1.8, 11] + fail-fast: false + + steps: + - uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: Build with Gradle + run: ./gradlew clean build -x reference -PstatemachineIncludeTags=redis -PstatemachineTestResults=true + - name: Tar Build Logs + if: ${{ failure() }} + run: | + tar -zc --ignore-failed-read --file build/buildlogs.tar.gz */build/reports */*/build/reports + - name: Upload Build Logs + if: ${{ failure() }} + uses: actions/upload-artifact@v2 + with: + name: buildlogs + path: build/buildlogs.tar.gz