-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(plugin) update JSON::Path dep on alma8 to same version as other OS
Alma8 don't provide Exporter::shiny in a recent enough version (provide 1.000000 instead of 1.002002) so we must build this dep. REF:CTOR-525
- Loading branch information
Showing
13 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/almalinux:8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/almalinux:9 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/debian:bookworm | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/debian:bullseye | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/centos:7 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/ubuntu:jammy | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/almalinux:8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/almalinux:9 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/debian:bookworm | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/debian:bullseye | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG REGISTRY_URL | ||
ARG REGISTRY_URL=docker.io | ||
|
||
FROM ${REGISTRY_URL}/ubuntu:jammy | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,11 +69,8 @@ jobs: | |
dnf install -y cpanminus gcc | ||
fi | ||
if [ "${{ matrix.distrib }}" = "el8" ]; then | ||
cpanm -v -l /tmp JSON::[email protected] | ||
else | ||
cpanm -v -l /tmp JSON::[email protected] | ||
fi | ||
cpanm -v -l /tmp JSON::[email protected] | ||
shell: bash | ||
|
||
- name: Set package name and paths according to distrib | ||
|
@@ -90,7 +87,6 @@ jobs: | |
else | ||
NAME="perl-JSON-Path" | ||
if [ "${{ matrix.distrib }}" = "el8" ]; then | ||
VERSION="0.5" # https://github.com/centreon/centreon-plugins/issues/4540 | ||
PERL_VENDORLIB="/usr/local/share/perl5" | ||
else | ||
PERL_VENDORLIB="/usr/local/share/perl5/$PERL_VERSION" | ||
|