From 6a4b98ece1515b231e93552b0ca46061ed44fa84 Mon Sep 17 00:00:00 2001 From: Siim Kallas Date: Tue, 2 Jul 2024 12:03:35 +0300 Subject: [PATCH] drop nodejs14 checks from centos7 --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7750e03b..1a59eecf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,7 +214,7 @@ jobs: strategy: fail-fast: false matrix: - nodejs: [14] + nodejs: [16] include: - container: 'centos:7' - cmd: 'curl -sL https://rpm.nodesource.com/setup_${NODE_VERSION}.x | bash - && yum install -y nodejs gcc-c++ make' @@ -241,14 +241,12 @@ jobs: fail-fast: false matrix: container: ['centos:7'] - nodejs: [14, 16] + nodejs: [16] include: - - container: 'centos:7' - nodejs: 14 - cmd: 'curl -sL https://rpm.nodesource.com/setup_14.x | bash - && yum install -y nodejs' - container: 'centos:7' nodejs: 16 - cmd: 'yum install https://rpm.nodesource.com/pub_16.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm -y && yum install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1' + cmd: 'curl -sL https://rpm.nodesource.com/setup_${NODE_VERSION}.x | bash - && yum install -y nodejs gcc-c++ make' + #cmd: 'yum install https://rpm.nodesource.com/pub_16.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm -y && yum install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1' name: Centos check - ${{ matrix.container }} - Node.js ${{ matrix.nodejs }} container: ${{ matrix.container }} env: