.travis.yml 762 B

123456789101112131415161718192021222324252627
  1. dist: xenial
  2. sudo: required
  3. language: shell
  4. compiler:
  5. env:
  6. before_install:
  7. install:
  8. - sudo apt-get update -qq
  9. - sudo apt-get remove -y -qq oss4-dev
  10. - sudo apt-get install -y -qq gawk wget git-core diffstat unzip texinfo gcc-multilib build-essential chrpath socat cpio python python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python-git
  11. script:
  12. - mkdir -p ~/bin
  13. - PATH=~/bin:$PATH
  14. - curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
  15. - chmod a+x ~/bin/repo
  16. - mkdir -p riscv-yocto
  17. - git config --global color.ui true
  18. - repo init -u git://github.com/riscv/meta-riscv -b master -m tools/manifests/riscv-yocto.xml
  19. - repo sync
  20. - repo start work --all
  21. - . ./meta-riscv/setup.sh
  22. - bitbake core-image-minimal
  23. after_success: