Re: Podling Nuttx Report Reminder - February 2020

2020-02-01 Thread Abdelatif Guettouche
Hi,

Yes, it is light.  Not a lot of things have changed since the last report.
However, this is not the last version, it will get updated during the
next couple of days.

> I have noticed there seem to be less discussion happening on mailing, and 
> there may be some conversion happening off-list, which may be an issue that 
> needs to be looked into. But just about all podlings have that issue at this 
> stage.

Correct.  Some discussions are also happening on PRs comments.


On Sat, Feb 1, 2020 at 12:02 AM Justin Mclean  wrote:
>
> Hi,
>
> > There already is a draft:
> > https://cwiki.apache.org/confluence/display/NUTTX/February+2020
> > We would appreciate your usual feedback.
>
> No major feedback but it seems a little light on for detail. Have a look at 
> some of the previous incubator reports [1], you see some piddling reports are 
> better than others. Your last report was well received by the board (on 
> incubator private list sorry you can’t see that).
>
> I have noticed there seem to be less discussion happening on mailing, and 
> there may be some conversion happening off-list, which may be an issue that 
> needs to be looked into. But just about all podlings have that issue at this 
> stage.
>
> Thanks,
> Justin
>
> 1. https://whimsy.apache.org/board/minutes/Incubator.html


[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776946
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+   ")

[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776982
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
 
 Review comment:
   ok


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776904
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+   ")

[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776972
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
 
 Review comment:
   ok, it makes sense.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776876
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+   ")

[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373777087
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
 
 Review comment:
   ok


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [incubator-nuttx-testing] maht commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
maht commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373776949
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+   ")

[GitHub] [incubator-nuttx-testing] liuguo09 commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
liuguo09 commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373813791
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+ 

[GitHub] [incubator-nuttx-testing] liuguo09 commented on a change in pull request #3: Initial checkin CI related scripts and testlist files

2020-02-01 Thread GitBox
liuguo09 commented on a change in pull request #3: Initial checkin CI related 
scripts and testlist files
URL: 
https://github.com/apache/incubator-nuttx-testing/pull/3#discussion_r373813821
 
 

 ##
 File path: cibuild.sh
 ##
 @@ -0,0 +1,171 @@
+#!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+WD=$PWD
+nuttx=$WD/../nuttx
+apps=$WD/../apps
+tools=$WD/../tools
+prebuilt=$WD/../prebuilt
+
+# genromfs
+install=("if [ ! -d \"$prebuilt/genromfs/usr/bin\" ]; then \
+if [ ! -d "$tools" ]; then \
+  git clone https://github.com/nuttx/tools.git $tools; \
+fi; \
+mkdir -p $prebuilt; cd $tools; \
+tar zxf genromfs-0.5.2.tar.gz -C $prebuilt; \
+cd $prebuilt/genromfs-0.5.2; \
+make install PREFIX=$prebuilt/genromfs; \
+cd $prebuilt; rm -rf genromfs-0.5.2; \
+  fi; \
+  genromfs -h; \
+  ")
+path=("$prebuilt/genromfs/usr/bin")
+
+# kconfig-frontends
+install+=("if [ ! -d \"$prebuilt/kconfig-frontends/bin\" ]; then \
+ cd $tools/kconfig-frontends; \
+ ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf 
--disable-gconf --disable-qconf --enable-static; \
+ make install; \
+ cd $tools; git clean -xfd; \
+   fi; \
+   ")
+path+=("$prebuilt/kconfig-frontends/bin")
+
+# arm gcc toolchain
+install+=("if [ ! -d \"$prebuilt/gcc-arm-none-eabi/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2;
 \
+ tar jxf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+ mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi; \
+ rm gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2; \
+   fi; \
+   arm-none-eabi-gcc --version; \
+   ")
+path+=("$prebuilt/gcc-arm-none-eabi/bin")
+
+# mips gcc toolchain
+install+=("if [ ! -d \"$prebuilt/pinguino-compilers/linux64/p32/bin\" ]; then \
+ cd $prebuilt; \
+ git clone https://github.com/PinguinoIDE/pinguino-compilers; \
+   fi; \
+   p32-gcc --version; \
+   ")
+path+=("$prebuilt/pinguino-compilers/linux64/p32/bin")
+
+# risc-v gcc toolchain
+install+=("if [ ! -d \"$prebuilt/riscv64-unknown-elf-gcc/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz;
 \
+ tar zxf 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+ mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14 
riscv64-unknown-elf-gcc; \
+ rm 
riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz; \
+   fi; \
+   riscv64-unknown-elf-gcc --version; \
+   ")
+path+=("$prebuilt/riscv64-unknown-elf-gcc/bin")
+
+# ccache
+install+=("if [ ! -d \"$prebuilt/ccache/bin\" ]; then \
+ cd $prebuilt; \
+ wget 
https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz; \
+ tar zxf ccache-3.7.7.tar.gz; \
+ cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; 
make install; \
+ cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/g++; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/arm-none-eabi-g++; \
+ ln -sf $prebuilt/ccache/bin/ccache $prebuilt/ccache/bin/p32-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-gcc; \
+ ln -sf $prebuilt/ccache/bin/ccache 
$prebuilt/ccache/bin/riscv64-unknown-elf-g++; \
+   fi; \
+   ccache --version; \
+   export USE_CCACHE=1; \
+   export CCACHE_DIR=$prebuilt/ccache/.ccache; \
+   ccache -M 5G; \
+ 

Re: Podling Nuttx Report Reminder - February 2020

2020-02-01 Thread Nathan Hartman
On Sat, Feb 1, 2020 at 5:24 AM Abdelatif Guettouche <
abdelatif.guettou...@gmail.com> wrote:

> > I have noticed there seem to be less discussion happening on mailing,
> and there may be some conversion happening off-list, which may be an issue
> that needs to be looked into. But just about all podlings have that issue
> at this stage.
>
> Correct.  Some discussions are also happening on PRs comments.


Those are all being forwarded to dev@.

(At least, I am receiving a copy of each, and it appears to be coming from
(or to?) dev@.)

Thanks,
Nathan


Re: Podling Nuttx Report Reminder - February 2020

2020-02-01 Thread Abdelatif Guettouche
They are? I think they got redirected to commit@.
Only the testing repo still got its discussions forwarded to dev@.
At least this is how I see them.


On Sun, Feb 2, 2020, 03:37 Nathan Hartman  wrote:

> On Sat, Feb 1, 2020 at 5:24 AM Abdelatif Guettouche <
> abdelatif.guettou...@gmail.com> wrote:
>
> > > I have noticed there seem to be less discussion happening on mailing,
> > and there may be some conversion happening off-list, which may be an
> issue
> > that needs to be looked into. But just about all podlings have that issue
> > at this stage.
> >
> > Correct.  Some discussions are also happening on PRs comments.
>
>
> Those are all being forwarded to dev@.
>
> (At least, I am receiving a copy of each, and it appears to be coming from
> (or to?) dev@.)
>
> Thanks,
> Nathan
>