From 3a058d217285e4c5cd420d808742dfe2ece40c64 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Fri, 25 Dec 2020 10:20:12 +0100 Subject: [PATCH] We run all combinations when validate the PR, let's just use one type for normal push Motivation: Let us just only use one build config when building the 4.1 branch. Modifications: As we already do a full validation when doing the PR builds we can just only use one build config for pushes to the "main" branches Result: Faster build times --- .github/workflows/ci-build.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 8765b0630d..8a344fc741 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -16,15 +16,9 @@ jobs: strategy: matrix: include: - - setup: linux-x86_64-java8 - docker-compose-build: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.18.yaml build" - docker-compose-run: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.18.yaml run build" - setup: linux-x86_64-java11 docker-compose-build: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.111.yaml build" docker-compose-run: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.111.yaml run build" - - setup: linux-x86_64-java15 - docker-compose-build: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.115.yaml build" - docker-compose-run: "-f docker/docker-compose.yaml -f docker/docker-compose.centos-6.115.yaml run build" name: ${{ matrix.setup }} steps: