diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-15 22:20:30 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-15 22:20:30 +1100 |
commit | 7b7ff60f91889f8d601d4b4c6a36e9511fdd40dd (patch) | |
tree | 7ce970da1ec5579f093abde6e704d2d79f18d5d9 | |
parent | fcab4356077435f0f4f9b068acb76e21d6cc20a6 (diff) | |
download | micropython-7b7ff60f91889f8d601d4b4c6a36e9511fdd40dd.tar.gz micropython-7b7ff60f91889f8d601d4b4c6a36e9511fdd40dd.zip |
travis: Change an stmhal rule to build PYBV11 instead of default PYBV10.
This allows to test the PYBV11 target as well as the network drivers
without adding another rule. It also removes the need to use -B,
side-stepping the issue of whether or not -B works with qstr auto
generation.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2a5c597eb7..76aa965d2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ script: - make -C bare-arm - make -C qemu-arm test - make -C stmhal - - make -C stmhal -B MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1 + - make -C stmhal BOARD=PYBV11 MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1 - make -C stmhal BOARD=STM32F7DISC - make -C stmhal BOARD=STM32L476DISC - make -C teensy |