You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2018/10/03 12:06:54 UTC

[mynewt-core] branch master updated (e1c42b7 -> 03a7540)

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from e1c42b7  Merge pull request #1402 from andrzej-kaczmarek/os_arch_in_isr
     new eed52be  Remove gcc-multilib dependency
     new 03a7540  Install gcc-7-multilib only on `newt test` machine

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)


[mynewt-core] 01/02: Remove gcc-multilib dependency

Posted by ut...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit eed52be3b8f13824bcded72f3de27894218f9c4d
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Thu Sep 27 16:02:50 2018 -0300

    Remove gcc-multilib dependency
    
    The gcc-multilib was bringing in full gcc-4.8 (including g++-4.8),
    so remove it and add kernel headers dep manually.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index add5dbe..4f52bef 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,8 +22,8 @@ _addons: &addon_conf
     sources:
       - ubuntu-toolchain-r-test
     packages:
-      - gcc-multilib
       - gcc-7-multilib
+      - linux-libc-dev:i386
 
 go:
   - "1.10"


[mynewt-core] 02/02: Install gcc-7-multilib only on `newt test` machine

Posted by ut...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 03a75401a07709b56033a4cf95249526c8b5ca69
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Thu Sep 27 16:05:44 2018 -0300

    Install gcc-7-multilib only on `newt test` machine
    
    Running `newt build` for BSPs and test targets requires only
    arm-none-eabi-gcc, so remove the extra gcc-7-multilib dependency from
    those machines.
---
 .travis.yml | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 4f52bef..da0e3eb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,28 +31,26 @@ go:
 matrix:
   include:
     - os: linux
-      addons: *addon_conf
-      env: 
+      env:
         - TEST=BUILD_TARGETS
     - os: linux
-      addons: *addon_conf
-      env: 
+      env:
         - TEST=BUILD_BLINKY
     - os: linux
       addons: *addon_conf
-      env: 
+      env:
         - TEST=TEST_ALL
     - os: osx
       osx_image: xcode9.2
-      env: 
+      env:
         - TEST=BUILD_TARGETS
     - os: osx
       osx_image: xcode9.2
-      env: 
+      env:
         - TEST=BUILD_BLINKY
     - os: osx
       osx_image: xcode9.2
-      env: 
+      env:
         - TEST=TEST_ALL
 
 install:
@@ -74,7 +72,8 @@ script:
 - newt install
 
 - export IGNORED_BSPS="ci40 embarc_emsk hifive1 native-armv7 native-mips
-                       pic32mx470_6lp_clicker pic32mz2048_wi-fire sensorhub"
+                       pic32mx470_6lp_clicker pic32mz2048_wi-fire sensorhub
+                       native"
 - $HOME/ci/run_test.sh
 
 cache: