Skip to content

Commit e3d9d61

Browse files
committed
NR-455789 Suse 15.7 OS upgrade
1 parent e7458b2 commit e3d9d61

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.github/workflows/ci_build_docker_runner.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
- suse15.4
4040
- suse15.5
4141
- suse15.6
42+
- suse15.7
4243
- ubuntu1604
4344
- ubuntu1804
4445
- ubuntu2004

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
with:
2121
repo_base_url: 'https://download.newrelic.com/infrastructure_agent'
2222
package_name: 'newrelic-infra'
23-
package_version: '1.57.1'
23+
package_version: '1.68.0'
2424
gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg'
25-
platforms: "al2,al2023,centos7,centos8,debian-bullseye,debian-buster,redhat8,redhat9,suse15.2,suse15.3,suse15.4,suse15.5,suse15.6,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204,ubuntu2404"
25+
platforms: "al2,al2023,centos7,centos8,debian-bullseye,debian-buster,redhat8,redhat9,suse15.2,suse15.3,suse15.4,suse15.5,suse15.6,suse15.7,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204,ubuntu2404"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Github action that tests the correct installation of a given package and version
3030
- suse15.4
3131
- suse15.5
3232
- suse15.6
33+
- suse15.7
3334
- ubuntu1604
3435
- ubuntu1804
3536
- ubuntu2004
@@ -55,9 +56,9 @@ jobs:
5556
with:
5657
repo_base_url: 'http://nr-downloads-ohai-staging.s3-website-us-east-1.amazonaws.com/infrastructure_agent'
5758
package_name: 'newrelic-infra'
58-
package_version: '1.36.0'
59+
package_version: '1.68.0'
5960
gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg'
60-
platforms: "al2,al2022,centos7,centos8,debian-bullseye,debian-buster,redhat8,redhat9,suse15.2,suse15.3,suse15.4,suse15.5,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204"
61+
platforms: "al2,al2022,centos7,centos8,debian-bullseye,debian-buster,redhat8,redhat9,suse15.2,suse15.3,suse15.4,suse15.5,suse15.6,suse15.7,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204"
6162
```
6263
6364
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM opensuse/leap:15.7
2+
3+
# Run a system update so the system doesn't overwrite the fake systemctl later
4+
RUN zypper -n update
5+
6+
RUN zypper -n install python3 sudo curl
7+
8+
# Adding fake systemctl
9+
RUN curl https://raw.githubusercontent.com/gdraheim/docker-systemctl-replacement/master/files/docker/systemctl3.py -o /usr/local/bin/systemctl
10+
11+
RUN chmod +x /usr/local/bin/systemctl
12+
13+
CMD ["/usr/local/bin/systemctl"]

prepare_platform.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This is a bash script to make generate a Molecule configutaion.
2424
exit
2525
fi
2626

27-
available_platforms=("al2" "al2023" "centos7" "centos8" "debian-bullseye" "debian-buster" "debian-bookworm" "redhat8" "redhat9" "suse15.2" "suse15.3" "suse15.4" "suse15.5" "suse15.6" "ubuntu1604" "ubuntu1804" "ubuntu2004" "ubuntu2204" "ubuntu2404")
27+
available_platforms=("al2" "al2023" "centos7" "centos8" "debian-bullseye" "debian-buster" "debian-bookworm" "redhat8" "redhat9" "suse15.2" "suse15.3" "suse15.4" "suse15.5" "suse15.6" "suse15.7" "ubuntu1604" "ubuntu1804" "ubuntu2004" "ubuntu2204" "ubuntu2404")
2828

2929
# check_platforms verifies that the provided platforms are available
3030
check_platforms() {

0 commit comments

Comments
 (0)