Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing: Prepare to turn on Rocky Linux 8 #652

Merged
merged 2 commits into from
Jun 6, 2022

Conversation

martijnvans
Copy link
Contributor

ops_agent_test.go passes with no changes needed when run locally. third_party_apps_test.go needed a few small changes, and with them I got a passing result (though some apps have skips configured for everything except debian-10):

--- PASS: TestThirdPartyApps (0.48s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/redis (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/wildfly (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/nginx (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/mysql (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/jvm (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/cassandra (0.00s)
    --- SKIP: TestThirdPartyApps/rocky-linux-8/apache (0.00s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/memcached (314.10s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/varnish (317.71s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/zookeeper (318.85s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/postgresql (322.56s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/kafka (323.13s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/activemq (323.67s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/mongodb (324.59s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/tomcat (326.77s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/jetty (333.74s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/couchdb (333.72s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/solr (341.83s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/hbase (362.66s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/elasticsearch (393.41s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/rabbitmq (423.71s)
    --- PASS: TestThirdPartyApps/rocky-linux-8/hadoop (433.97s)
PASS

@@ -1,11 +1,11 @@
set -e

source /etc/os-release
case $VERSION_ID in
case "${VERSION_ID}" in
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this part of the change is an artifact of me trying something different and then not-quite undoing that attempt. But it's good practice to double quote variables in general.

7)
sudo yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
;;
8)
8|8.*)
Copy link
Contributor Author

@martijnvans martijnvans Jun 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rocky linux 8 currently has VERSION_ID 8.6. The 8|8.* form will support centos 8, (which is EOL but anyway), as well as any version starting with 8..

@martijnvans martijnvans requested review from a team, jkschulz and davidbtucker and removed request for a team and jkschulz June 6, 2022 17:37
@martijnvans
Copy link
Contributor Author

the windows failure is aan unrelated known issue.

@martijnvans martijnvans merged commit f5bf6d3 into master Jun 6, 2022
@martijnvans martijnvans deleted the martijnvans-enable-rocky branch June 6, 2022 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants