From 71a1311be53990aeee6a42a66a8879eb3e751765 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Thu, 10 Jun 2021 02:26:14 +0300 Subject: [PATCH] Removed CentOS and added Oracle Linux --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index eaba9edf5..74a373b3b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -84,10 +84,6 @@ jobs: DOCKER_PLATFORM="linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le" fi - if [ "${{ matrix.os }}" == "centos" ]; then - DOCKER_PLATFORM="linux/amd64,linux/arm64,linux/ppc64le" - fi - if [ "${{ matrix.build }}" == "java-gateway" ]; then DOCKER_PLATFORM=${DOCKER_PLATFORM%",linux/ppc64le"} fi @@ -95,6 +91,10 @@ jobs: if [ "${{ matrix.build }}" == "web-service" ]; then DOCKER_PLATFORM=${DOCKER_PLATFORM%",linux/ppc64le"} fi + + if [ "${{ matrix.os }}" == "ol" ]; then + DOCKER_PLATFORM="linux/amd64,linux/arm64" + fi echo ::set-output name=list::${DOCKER_PLATFORM}