forgot the other directory

This commit is contained in:
Lokathor 2018-11-20 03:05:34 -07:00
parent 445c3b489b
commit b89fd10bb5
2 changed files with 6 additions and 4 deletions

View file

@ -23,6 +23,7 @@ script:
- sudo dkp-pacman -Syu - sudo dkp-pacman -Syu
- sudo dkp-pacman -S -v --noconfirm gba-tools devkitARM - sudo dkp-pacman -S -v --noconfirm gba-tools devkitARM
- export PATH="$PATH:/opt/devkitpro/devkitARM/bin" - export PATH="$PATH:/opt/devkitpro/devkitARM/bin"
- export PATH="$PATH:/opt/devkitpro/tools/bin"
# Test the lib and then compile all examples with `cargo make` # Test the lib and then compile all examples with `cargo make`
- cargo test --lib && cargo test --lib --release - cargo test --lib && cargo test --lib --release
- cargo make - cargo make

View file

@ -32,10 +32,11 @@ reason, you'll still want devkitpro for the `gbafix` utility.
`C:\devkitpro\tools\bin` to be [added to your `C:\devkitpro\tools\bin` to be [added to your
PATH](https://stackoverflow.com/q/44272416/455232), depending on where you PATH](https://stackoverflow.com/q/44272416/455232), depending on where you
installed it to and such. installed it to and such.
* On Linux you'll also want it to be added to your path, but if you're using * On Linux you can use pacman to get it, and the default install puts the stuff
Linux I'll just assume you know how to do all that. I'm told that the default in `/opt/devkitpro/devkitARM/bin` and `/opt/devkitpro/tools/bin`. If you need
installation path is `/opt/devkitpro/devkitARM/bin`, so look there first if help you can look in our repository's
you didn't select some other place. [.travis.yml](https://github.com/rust-console/gba/blob/master/.travis.yml)
file to see exactly what our CI does.
Finally, you'll need `cargo-xbuild`. Just run `cargo install cargo-xbuild` and Finally, you'll need `cargo-xbuild`. Just run `cargo install cargo-xbuild` and
cargo will figure it all out for you. cargo will figure it all out for you.