japaric-archived / rust-everywhere

SUPERSEDED by https://github.com/japaric/trust
Apache License 2.0
254 stars 12 forks source link

Add an example for allow_failures: #44

Closed dns2utf8 closed 8 years ago

dns2utf8 commented 8 years ago

I would like to run the tests on arm64 but I do not care if they fail. I am not sure how to configure my .travis.yml file.

Can you help me or give a working example?

japaric commented 8 years ago

Can you help me or give a working example?

Sure, I can give you some pointers.

The allowed_failures syntax looks like this.

arm64 is a little more elaborated than the existing targets because it can't run on Ubuntu Precise (glibc is too old, no support for arm64 in that version) so you need to use Ubuntu Trusty instead. Look at rust-cross for guidance. In particular, this is the Trusty bit and these are the apt packages you need to install.

I'll push a working example to this repository later today.

dns2utf8 commented 8 years ago

Thank you