-
-
Notifications
You must be signed in to change notification settings - Fork 419
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
Add prebuilt ponyc binaries for CentOS 8 #3629
Conversation
At the request of Damon Kwok, we are adding prebuilt CentOS 8 versions of ponyc. Both nightly and release builds.
4cc91db
to
869bdd3
Compare
Hi @SeanTAllen, The changelog - added label was added to this pull request; all PRs with a changelog label need to have release notes included as part of the PR. If you haven't added release notes already, please do. Release notes are added by creating a uniquely named file in the The basic format of the release notes (using markdown) should be:
Thanks. |
@Theodus do we need to make a change to ponyup for these to show up? |
17d8449
to
4595fa2
Compare
|
||
RUN yum install -y \ | ||
clang \ | ||
diffutils \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one blew me away. Not diff
install by default.
RUN yum install -y \ | ||
dnf-plugins-core \ | ||
epel-release \ | ||
&& yum config-manager --set-enabled PowerTools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required in order to be able to get libstdc++-static
&& pip3 install cloudsmith-cli | ||
|
||
# install a newer cmake | ||
RUN curl --output cmake-3.15.3-Linux-x86_64.sh https://cmake.org/files/v3.15/cmake-3.15.3-Linux-x86_64.sh \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The supplied version of cmake is too old.
TRIPLE_VENDOR: unknown | ||
TRIPLE_OS: centos8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Theodus based on our Ubuntu18.04 naming, I believe this should be correct.
I verified that:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks!
At the request of Damon Kwok, we are adding prebuilt CentOS 8 versions
of ponyc. Both nightly and release builds.