-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Centreon 24.04 (Jira release #19606#)
- Loading branch information
Showing
1,552 changed files
with
21,409 additions
and
16,638 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
* @centreon/owners-cpp | ||
|
||
.github/** @centreon/owners-pipelines | ||
packaging/** @centreon/owners-pipelines | ||
selinux/** @centreon/owners-pipelines | ||
|
||
tests/** @centreon/owners-robot-e2e |
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
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
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 |
---|---|---|
|
@@ -56,4 +56,4 @@ runs: | |
--header 'Content-Type: application/json' \ | ||
--data ''$VERSION_DATA'' | ||
shell: bash | ||
shell: bash |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: '/' | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- 'dependencies' | ||
- 'gha' |
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
ARG REGISTRY_URL | ||
|
||
FROM ${REGISTRY_URL}/almalinux:9 | ||
|
||
COPY . /tmp/collect | ||
|
||
RUN <<EOF | ||
|
||
# Base dnf configuration. | ||
echo 'http_caching=none' >> /etc/yum.conf | ||
echo 'assumeyes=1' >> /etc/yum.conf | ||
sed -i 's/best=True/best=False/g' /etc/dnf/dnf.conf | ||
dnf install -y dnf-plugins-core | ||
dnf config-manager --set-enabled crb | ||
|
||
dnf install -y epel-release | ||
|
||
dnf --best install -y \ | ||
gcc \ | ||
gcc-c++ \ | ||
gdb \ | ||
git \ | ||
openssh-server \ | ||
mariadb-server \ | ||
mariadb \ | ||
gnutls \ | ||
libgcrypt \ | ||
lua \ | ||
perl-ExtUtils-Embed \ | ||
python3 \ | ||
python3-devel \ | ||
python3-pip \ | ||
perl-Thread-Queue \ | ||
rrdtool \ | ||
perl \ | ||
procps-ng \ | ||
zstd \ | ||
psmisc \ | ||
sudo | ||
|
||
echo "install robot and dependencies" | ||
|
||
pip3 install -U robotframework robotframework-databaselibrary robotframework-httpctrl robotframework-examples pymysql python-dateutil psutil | ||
pip3 install grpcio grpcio_tools py-cpuinfo cython unqlite gitpython boto3 | ||
|
||
cd /tmp/collect | ||
|
||
.github/scripts/collect-prepare-test-robot.sh mariadb | ||
|
||
/bin/rm -rf /tmp/collect | ||
|
||
EOF | ||
|
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
53 changes: 53 additions & 0 deletions
53
.github/docker/Dockerfile.centreon-collect-debian-bullseye-test
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
ARG REGISTRY_URL | ||
|
||
FROM ${REGISTRY_URL}/debian:bullseye | ||
|
||
|
||
COPY . /tmp/collect | ||
|
||
RUN <<EOF | ||
|
||
apt-get update | ||
|
||
apt-get -y install curl \ | ||
gcc \ | ||
g++ \ | ||
gdb \ | ||
git \ | ||
mariadb-server \ | ||
openssh-server \ | ||
libmariadb3 \ | ||
librrd8 \ | ||
libgnutlsxx28 \ | ||
liblua5.3 \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
libperl-dev \ | ||
libgcrypt20 \ | ||
aptitude \ | ||
strace \ | ||
locales \ | ||
rrdtool \ | ||
rrdcached \ | ||
zstd \ | ||
psmisc \ | ||
sudo | ||
|
||
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 | ||
|
||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | ||
python3 get-pip.py | ||
|
||
pip3 install -U robotframework robotframework-databaselibrary robotframework-httpctrl robotframework-examples pymysql python-dateutil psutil | ||
pip3 install grpcio grpcio_tools py-cpuinfo cython unqlite gitpython boto3 | ||
|
||
|
||
cd /tmp/collect | ||
|
||
.github/scripts/collect-prepare-test-robot.sh mariadb | ||
|
||
/bin/rm -rf /tmp/collect | ||
|
||
EOF | ||
|
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
Oops, something went wrong.