Skip to content
Snippets Groups Projects
Commit 0db92bb0 authored by Martine Lenders's avatar Martine Lenders
Browse files

travis: adapt for unittest change

parent 4fb7939a
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,7 @@ before_install: ...@@ -29,6 +29,7 @@ before_install:
install: install:
- sudo apt-get -y install $(./dist/tools/travis-scripts/get-pkg-list.py) - sudo apt-get -y install $(./dist/tools/travis-scripts/get-pkg-list.py)
- sudo pip install pexpect # current version in Ubuntu repos is errorneous
- git config --global user.email "travis@example.com" - git config --global user.email "travis@example.com"
- git config --global user.name "Travis CI" - git config --global user.name "Travis CI"
- test "$TRAVIS_BRANCH" = "master" || git fetch origin $TRAVIS_BRANCH:$TRAVIS_BRANCH - test "$TRAVIS_BRANCH" = "master" || git fetch origin $TRAVIS_BRANCH:$TRAVIS_BRANCH
......
...@@ -37,7 +37,7 @@ common_pkgs = common_pkgs + ["cmake"] ...@@ -37,7 +37,7 @@ common_pkgs = common_pkgs + ["cmake"]
arm_pkgs = ["gcc-arm-none-eabi"] arm_pkgs = ["gcc-arm-none-eabi"]
msp_pkgs = ["gcc-msp430"] msp_pkgs = ["gcc-msp430"]
x86_pkgs = ["qemu-system-x86", "g++-multilib", "gcc-multilib", x86_pkgs = ["qemu-system-x86", "g++-multilib", "gcc-multilib",
"build-essential"] "build-essential","python-pip"]
avr8_pkgs = ["gcc-avr", "binutils-avr", "avr-libc"] avr8_pkgs = ["gcc-avr", "binutils-avr", "avr-libc"]
static_tests_pkgs = ["doxygen", "cppcheck"] static_tests_pkgs = ["doxygen", "cppcheck"]
all_mcu_pkgs = arm_pkgs + msp_pkgs + \ all_mcu_pkgs = arm_pkgs + msp_pkgs + \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment