guyuqi commented on code in PR #1148:
URL: https://github.com/apache/bigtop/pull/1148#discussion_r1282740087
##########
bigtop_toolchain/manifests/renv.pp:
##########
@@ -49,22 +49,42 @@
]
}
}
+ /openEuler/: {
+ $pkgs = [
+ "R",
+ "R-devel",
+ ]
+ }
}
- if ($operatingsystem != 'openEuler') {
- package { $pkgs:
- ensure => installed,
- before => [Exec["install_r_packages"]]
+ if ($operatingsystem == 'openEuler'){
+ if ($architecture == "aarch64") {
+ $url =
"https://github.com/jgm/pandoc/releases/download/2.19.2/pandoc-2.19.2-linux-arm64.tar.gz"
+ $pandoctar = "pandoc-2.19.2-linux-arm64.tar.gz"
+ } else{
+ $url =
"https://github.com/jgm/pandoc/releases/download/2.19.2/pandoc-2.19.2-linux-amd64.tar.gz"
+ $pandoctar = "pandoc-2.19.2-linux-amd64.tar.gz"
+ }
Review Comment:
Does openEuler offically support PowerPC?
If not, please add comments here and Bigtop would not offer the openEuler
packages for ppc64le in the future.
(We would add this notification in the next release annoucement).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]