From 5ec7eb8238b9eb1c4f99d0844194e05b47898032 Mon Sep 17 00:00:00 2001 From: dzmipt Date: Fri, 15 Nov 2024 20:03:12 +0100 Subject: [PATCH] adding int test for Windows --- .github/workflows/gradle.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 2e769ca3..bd508374 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -44,10 +44,16 @@ jobs: run: ./gradlew build timeout-minutes: 2 - - name: Integration tests + - name: Integration tests - Linux + if: ${{ runner.os == 'Linux' }} run: ./intTests-Xvfb.sh timeout-minutes: 5 + - name: Integration tests - Windows + if: ${{ runner.os == 'Windows' }} + run: ./gradlew integrationTest -x test + timeout-minutes: 5 + - name: Log files - Linux if: ${{ runner.os == 'Linux' }} run: find . -type f -exec echo {} \;