-
Notifications
You must be signed in to change notification settings - Fork 29
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 support to ppc64le with gcc. Install gettext #100
base: master
Are you sure you want to change the base?
Conversation
We seem to replacing travis with github actions though :-| |
Good news everyone, GitHub Actions doesn't support running natively on other architectures. However, it does support running stuff in Docker: https://github.com/marketplace/actions/run-on-architecture#advanced-example So one way to do this on GA is by creating a new workflow which basically just runs all build steps inside docker. Since we don't use any advanced stuff, this should be a copy-and paste job, since the cache action can run outside of docker. Also, this means we can in theory extend to aarch64, armv7, and s390x, just by extending the matrix. |
@ars3niy thanks for the feedback. Travis does want to continue open source support Pl. refer to https://blog.travis-ci.com/oss-announcement if that is the concern. Meanwhile I can check if it is possible to run these steps as part of a docker, |
The announcement conveniently omits all the crucial parts:
|
I'm a simple person. Ben say github actions, me merge. Now can't merge this one :( |
Since gururajrkatti already wrote this commit twice, I'll have a look at how to write it for Github Actions – I will do that next year, though. Guten Rutsch, as we say in Germany! :) |
Add support to Linux on Power Little Endian architecture. Continuously building/testing on this platform along with intel will help in detecting/fixing the problems in early stage.