Skip to content

Commit

Permalink
only keep centos7 checks
Browse files Browse the repository at this point in the history
  • Loading branch information
seemk committed Sep 30, 2023
1 parent a128a85 commit 6d7b754
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ jobs:
strategy:
fail-fast: false
matrix:
container: ['centos:8']
nodejs: [16, 18, 20]
cmd: ['yum install https://rpm.nodesource.com/pub_${NODE_VERSION}.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm -y && yum install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1']
container: ['centos:7']
nodejs: [14, 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'
name: Centos check - ${{ matrix.container }} - Node.js ${{ matrix.nodejs }}
container: ${{ matrix.container }}
env:
Expand Down

0 comments on commit 6d7b754

Please sign in to comment.