You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by bt...@apache.org on 2021/01/16 08:08:47 UTC

[incubator-nuttx-testing] branch master updated (6c6e2cc -> c1094b3)

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

btashton pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git.


    from 6c6e2cc  nuttx-ci-linux: Install libpython2.7 for xtensa-esp32-elf-gdb (again)
     new 9d55cb5  Revert "Disable AVR targets on macOS due to homebrew issue"
     new 5658a62  Run "brew update" before installing avr-gcc
     new a3bd06a  Remove 2to3 link as suggested
     new c1094b3  cibuild.sh: add --quiet option to brew update to reduce log output

The 4 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:
 cibuild.sh         | 4 ++++
 testlist/other.dat | 8 --------
 2 files changed, 4 insertions(+), 8 deletions(-)


[incubator-nuttx-testing] 03/04: Remove 2to3 link as suggested

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

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit a3bd06a3477e32203412b3812c6841049f675d4a
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Jan 15 16:32:29 2021 +0900

    Remove 2to3 link as suggested
    
    https://github.com/actions/virtual-environments/issues/2322#issuecomment-749211076
---
 cibuild.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cibuild.sh b/cibuild.sh
index 9b83f2b..a7f6da1 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -40,6 +40,8 @@ case $os in
     install="python-tools u-boot-tools elf-toolchain gen-romfs kconfig-frontends arm-gcc-toolchain riscv-gcc-toolchain xtensa-esp32-gcc-toolchain avr-gcc-toolchain c-cache binutils"
     mkdir -p ${prebuilt}/homebrew
     export HOMEBREW_CACHE=${prebuilt}/homebrew
+    # https://github.com/actions/virtual-environments/issues/2322#issuecomment-749211076
+    rm -rf /usr/local/bin/2to3
     # https://github.com/osx-cross/homebrew-avr/issues/205#issuecomment-760637996
     brew update
     ;;


[incubator-nuttx-testing] 02/04: Run "brew update" before installing avr-gcc

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

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit 5658a629a5c8d42b8c6dfda902a067876cc55626
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Jan 15 13:41:03 2021 +0900

    Run "brew update" before installing avr-gcc
    
    As suggested by:
    https://github.com/osx-cross/homebrew-avr/issues/205#issuecomment-760637996
---
 cibuild.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cibuild.sh b/cibuild.sh
index 5b627b1..9b83f2b 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -40,6 +40,8 @@ case $os in
     install="python-tools u-boot-tools elf-toolchain gen-romfs kconfig-frontends arm-gcc-toolchain riscv-gcc-toolchain xtensa-esp32-gcc-toolchain avr-gcc-toolchain c-cache binutils"
     mkdir -p ${prebuilt}/homebrew
     export HOMEBREW_CACHE=${prebuilt}/homebrew
+    # https://github.com/osx-cross/homebrew-avr/issues/205#issuecomment-760637996
+    brew update
     ;;
   Linux)
     install="python-tools gen-romfs gperf kconfig-frontends arm-gcc-toolchain mips-gcc-toolchain riscv-gcc-toolchain xtensa-esp32-gcc-toolchain rx-gcc-toolchain c-cache"


[incubator-nuttx-testing] 01/04: Revert "Disable AVR targets on macOS due to homebrew issue"

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

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit 9d55cb5229f63410c2d3c31891cc98b4608b12c3
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Thu Jan 14 10:22:36 2021 +0900

    Revert "Disable AVR targets on macOS due to homebrew issue"
    
    This reverts commit acf2f44ae7df6ff256ba41eb11410c25d7cc7a4a.
---
 testlist/other.dat | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/testlist/other.dat b/testlist/other.dat
index cfdae68..32ae18c 100644
--- a/testlist/other.dat
+++ b/testlist/other.dat
@@ -5,14 +5,6 @@
 -avr32dev1:nsh
 -avr32dev1:ostest
 
-# Disable AVR targets on macOS due to homebrew issue
-# https://github.com/osx-cross/homebrew-avr/issues/205
--Darwin,teensy-2\.0:.*
--Darwin,micropendous3:.*
--Darwin,amber:.*
--Darwin,arduino-mega2560:.*
--Darwin,moteino-mega:.*
-
 /renesas/rx65n/rx65n-grrose
 /renesas/rx65n/rx65n-rsk2mb
 -Darwin,rx65n-grrose:.*


[incubator-nuttx-testing] 04/04: cibuild.sh: add --quiet option to brew update to reduce log output

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

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit c1094b33bc8a3b669a868ca75639b71a37a7974d
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Sat Jan 16 13:58:01 2021 +0900

    cibuild.sh: add --quiet option to brew update to reduce log output
---
 cibuild.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cibuild.sh b/cibuild.sh
index a7f6da1..de937f2 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -43,7 +43,7 @@ case $os in
     # https://github.com/actions/virtual-environments/issues/2322#issuecomment-749211076
     rm -rf /usr/local/bin/2to3
     # https://github.com/osx-cross/homebrew-avr/issues/205#issuecomment-760637996
-    brew update
+    brew update --quiet
     ;;
   Linux)
     install="python-tools gen-romfs gperf kconfig-frontends arm-gcc-toolchain mips-gcc-toolchain riscv-gcc-toolchain xtensa-esp32-gcc-toolchain rx-gcc-toolchain c-cache"