Skip to content

pkg: store packages sources in a global package directory#14289

Merged
kaspar030 merged 9 commits intoRIOT-OS:masterfrom
aabadie:pr/pkg/global_pkg_dir
Jun 26, 2020
Merged

pkg: store packages sources in a global package directory#14289
kaspar030 merged 9 commits intoRIOT-OS:masterfrom
aabadie:pr/pkg/global_pkg_dir

Conversation

@aabadie
Copy link
Copy Markdown
Contributor

@aabadie aabadie commented Jun 15, 2020

Contribution description

Please don't trigger Murdock before there's consensus about this PR

This PR is a POC that reworks the location where the fetched source code of packages is stored. The main objective is to have a central place for packages sources (in this PR it is $(RIOTBASE)/packages but that can be adapted) and avoid to fetch them all the time when building an application for different boards when the application needs some packages. When developing or testing, this saves a lot of time and a lot of disk space.

To achieve this, several things are required:

  • ensure that packages are not altering the original source code during the build: this is important because we can't add target specific intermediate build files within the source code. PRs pkg: avoid copying Makefiles in package source when possible #14251 and pkg: tools: ensure cmake based packages/tools are built out-of-source #14286 were opened to achieve this
  • the PKG_BUILDDIR variable is very ambiguous because most of the time it corresponds to the place where package sources are located. To make things more clear, this PR renames this variable to PKG_SOURCE_DIR which contains the same value as the actual PKG_BUILDDIR: $(PKGDIRBASE)/$(PKG_NAME). A new PKG_BUILD_DIR variable is introduced and corresponds to the place where files generated by the build are stored. This location is the same as the current one: $(BINDIRBASE)/pkg/$(BOARD)/$(PKG_NAME)
  • 2 packages cannot be built without altering the sources: openthread and micropython. For these, the current mechanism is kept: sources and build files are mixed within the application directory which means that PKG_SOURCE_DIR is the same as PKG_BUILD_DIR. Note that for openthread, the next release will use CMake so it will be possible to switch to the new organization.

This PR is not meant to be a replacement for git-cache. git-cache can still be useful on the CI, to avoid fetching all packages between each Murdock run and also because 2 packages are still cloned in each application/board build directory.

Open questions:

  • It is unclear to me how Murdock will react to such a change. Maybe it will be transparent ? or maybe there will be major problems I can't figure out now. Maybe we could also adapt the workflow on Murdock so that each worker (or container) starts by fetching all packages and once this is done, starts all build jobs. In this case, it will probably saves a lot of I/O since no files won't be moved from git-cache to each application build directory anymore but only once between git-cache and the global package sources location.
  • The location and name of the global cache could be changed: should we keep a global, single directory, like in this PR or should we store the sources in each package directory (e.g. pkg/<package name>/sources ?

Testing procedure

A successful Murdock run should be enough.

Example outputs with this PR:

tests/pkg_flatbuffers
  • build for native, no flatc and no package available: flatbuffers is fetch once for flatc but not for the application because the package and the tool share the same code (this could even more shared btw, but that's another PR):
make -C tests/pkg_flatbuffers --no-print-directory 
Building application "tests_pkg_flatbuffers" for "native" with MCU "native".

[INFO] flatc binary not found - building it from source now
make -C /work/riot/RIOT/dist/tools/flatc
[INFO] cloning flatbuffers
Cloning into '/work/riot/RIOT/packages/flatbuffers'...
remote: Enumerating objects: 55, done.
remote: Counting objects: 100% (55/55), done.
remote: Compressing objects: 100% (45/45), done.
remote: Total 17726 (delta 21), reused 21 (delta 9), pack-reused 17671
Receiving objects: 100% (17726/17726), 10.62 MiB | 778.00 KiB/s, done.
Resolving deltas: 100% (12276/12276), done.
HEAD is now at 9e7e8cbe Bumped version to 1.11.0
[INFO] updating flatbuffers /work/riot/RIOT/packages/flatbuffers/.pkg-state.git-downloaded
echo 9e7e8cbe9f675123dd41b7c62868acad39188cae > /work/riot/RIOT/packages/flatbuffers/.pkg-state.git-downloaded
[INFO] patch flatbuffers
-- Configuring done
-- Generating done
-- Build files have been written to: /work/riot/RIOT/dist/tools/flatc/build
"make" -C "/work/riot/RIOT/dist/tools/flatc/build"
Scanning dependencies of target flatc
[  4%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o
[  8%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o
[ 12%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o
[ 16%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o
[ 20%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o
[ 25%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o
[ 29%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o
[ 33%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_general.cpp.o
[ 37%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o
[ 41%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_js_ts.cpp.o
[ 45%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o
[ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o
[ 54%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o
[ 58%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lua.cpp.o
[ 62%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o
[ 66%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o
[ 70%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o
[ 75%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o
[ 79%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o
[ 83%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o
[ 87%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o
[ 91%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o
[ 95%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o
[100%] Linking CXX executable flatc
[100%] Built target flatc
[INFO] flatc binary successfully built!
make[1]: Nothing to be done for 'prepare'.
"make" -C /work/riot/RIOT/pkg/flatbuffers
make[1]: Nothing to be done for 'all'.
"make" -C /work/riot/RIOT/boards/native
"make" -C /work/riot/RIOT/boards/native/drivers
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/native
"make" -C /work/riot/RIOT/cpu/native/periph
"make" -C /work/riot/RIOT/cpu/native/stdio_native
"make" -C /work/riot/RIOT/cpu/native/vfs
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/cpp11-compat
"make" -C /work/riot/RIOT/sys/div
"make" -C /work/riot/RIOT/sys/test_utils/interactive_sync
"make" -C /work/riot/RIOT/sys/timex
"make" -C /work/riot/RIOT/sys/xtimer
   text	   data	    bss	    dec	    hex	filename
  76164	    732	  47784	 124680	  1e708	/work/riot/RIOT/tests/pkg_flatbuffers/bin/native/tests_pkg_flatbuffers.elf
  • rebuild for another board: flatc is already there, the package was already cloned, so the build starts immediately:
make BOARD=nucleo-f401re -C tests/pkg_flatbuffers --no-print-directory 
Building application "tests_pkg_flatbuffers" for "nucleo-f401re" with MCU "stm32".

make[1]: Nothing to be done for 'prepare'.
"make" -C /work/riot/RIOT/pkg/flatbuffers
make[1]: Nothing to be done for 'all'.
"make" -C /work/riot/RIOT/boards/nucleo-f401re
"make" -C /work/riot/RIOT/boards/common/nucleo
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/stm32
"make" -C /work/riot/RIOT/cpu/cortexm_common
"make" -C /work/riot/RIOT/cpu/cortexm_common/periph
"make" -C /work/riot/RIOT/cpu/stm32/bootloader
"make" -C /work/riot/RIOT/cpu/stm32/periph
"make" -C /work/riot/RIOT/cpu/stm32/stmclk
"make" -C /work/riot/RIOT/cpu/stm32/vectors
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/cpp11-compat
"make" -C /work/riot/RIOT/sys/div
"make" -C /work/riot/RIOT/sys/isrpipe
"make" -C /work/riot/RIOT/sys/newlib_syscalls_default
"make" -C /work/riot/RIOT/sys/pm_layered
"make" -C /work/riot/RIOT/sys/stdio_uart
"make" -C /work/riot/RIOT/sys/test_utils/interactive_sync
"make" -C /work/riot/RIOT/sys/timex
"make" -C /work/riot/RIOT/sys/tsrb
"make" -C /work/riot/RIOT/sys/xtimer
   text	   data	    bss	    dec	    hex	filename
  21472	    140	   2692	  24304	   5ef0	/work/riot/RIOT/tests/pkg_flatbuffers/bin/nucleo-f401re/tests_pkg_flatbuffers.elf
tests/pkg_libcose
  • build on native. The first time, 3 packages are fetched.
make -C tests/pkg_libcose --no-print-directory all test
Building application "tests_pkg_libcose" for "native" with MCU "native".

[INFO] cloning hacl
Cloning into '/work/riot/RIOT/packages/hacl'...
remote: Enumerating objects: 310, done.
remote: Total 310 (delta 0), reused 0 (delta 0), pack-reused 310
Receiving objects: 100% (310/310), 182.76 KiB | 601.00 KiB/s, done.
Resolving deltas: 100% (217/217), done.
HEAD is now at aac05f5 Remove unnecessary files
[INFO] updating hacl /work/riot/RIOT/packages/hacl/.pkg-state.git-downloaded
echo aac05f5094fc92569169d5a2af54c12387160634 > /work/riot/RIOT/packages/hacl/.pkg-state.git-downloaded
[INFO] patch hacl
[INFO] cloning libcose
Cloning into '/work/riot/RIOT/packages/libcose'...
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 1679 (delta 0), reused 0 (delta 0), pack-reused 1678
Receiving objects: 100% (1679/1679), 683.18 KiB | 769.00 KiB/s, done.
Resolving deltas: 100% (1086/1086), done.
HEAD is now at 8b5f651 Merge pull request #88 from bergzand/pr/ci/add_gcc9
[INFO] updating libcose /work/riot/RIOT/packages/libcose/.pkg-state.git-downloaded
echo 8b5f651c3203682a2d98121cd3e5c844cb2b4c36 > /work/riot/RIOT/packages/libcose/.pkg-state.git-downloaded
[INFO] patch libcose
[INFO] cloning nanocbor
Cloning into '/work/riot/RIOT/packages/nanocbor'...
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (14/14), done.
remote: Total 357 (delta 3), reused 8 (delta 1), pack-reused 342
Receiving objects: 100% (357/357), 226.65 KiB | 756.00 KiB/s, done.
Resolving deltas: 100% (138/138), done.
HEAD is now at 3a672f7 Merge pull request #19 from bergzand/pr/fix/non32bit
[INFO] updating nanocbor /work/riot/RIOT/packages/nanocbor/.pkg-state.git-downloaded
echo 3a672f79b2458a96393447e50a41174f741eadc5 > /work/riot/RIOT/packages/nanocbor/.pkg-state.git-downloaded
[INFO] patch nanocbor
"make" -C /work/riot/RIOT/pkg/hacl
"make" -C /work/riot/RIOT/packages/hacl -f /work/riot/RIOT/Makefile.base
"make" -C /work/riot/RIOT/pkg/libcose
"make" -C /work/riot/RIOT/packages/libcose/src -f /work/riot/RIOT/Makefile.base MODULE=libcose
"make" -C /work/riot/RIOT/packages/libcose/src/crypt -f /work/riot/RIOT/pkg/libcose/Makefile.libcose_crypt
"make" -C /work/riot/RIOT/pkg/nanocbor
"make" -C /work/riot/RIOT/packages/nanocbor/src -f /work/riot/RIOT/Makefile.base MODULE=nanocbor
"make" -C /work/riot/RIOT/boards/native
"make" -C /work/riot/RIOT/boards/native/drivers
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/native
"make" -C /work/riot/RIOT/cpu/native/periph
"make" -C /work/riot/RIOT/cpu/native/stdio_native
"make" -C /work/riot/RIOT/cpu/native/vfs
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/embunit
"make" -C /work/riot/RIOT/sys/luid
"make" -C /work/riot/RIOT/sys/memarray
"make" -C /work/riot/RIOT/sys/random
"make" -C /work/riot/RIOT/sys/random/tinymt32
"make" -C /work/riot/RIOT/sys/test_utils/interactive_sync
   text	   data	    bss	    dec	    hex	filename
 154647	    700	  72968	 228315	  37bdb	/work/riot/RIOT/tests/pkg_libcose/bin/native/tests_pkg_libcose.elf
r
/work/riot/RIOT/tests/pkg_libcose/bin/native/tests_pkg_libcose.elf  
RIOT native interrupts/signals initialized.
LED_RED_OFF
LED_GREEN_ON
RIOT native board initialized.
RIOT native hardware initialization complete.

Help: Press s to start test, r to print it is ready
READY
s
START
main(): This is RIOT! (Version: 2020.07-devel-1162-g253c5-pr/pkg/global_pkg_dir)
...
OK (3 tests)

  • re-build for another board: no fetch, the builds starts immediately
make BOARD=nucleo-f401re -C tests/pkg_libcose --no-print-directory
Building application "tests_pkg_libcose" for "nucleo-f401re" with MCU "stm32".

make[1]: Nothing to be done for 'prepare'.
make[1]: Nothing to be done for 'prepare'.
make[1]: Nothing to be done for 'prepare'.
"make" -C /work/riot/RIOT/pkg/hacl
"make" -C /work/riot/RIOT/packages/hacl -f /work/riot/RIOT/Makefile.base
"make" -C /work/riot/RIOT/pkg/libcose
"make" -C /work/riot/RIOT/packages/libcose/src -f /work/riot/RIOT/Makefile.base MODULE=libcose
"make" -C /work/riot/RIOT/packages/libcose/src/crypt -f /work/riot/RIOT/pkg/libcose/Makefile.libcose_crypt
"make" -C /work/riot/RIOT/pkg/nanocbor
"make" -C /work/riot/RIOT/packages/nanocbor/src -f /work/riot/RIOT/Makefile.base MODULE=nanocbor
"make" -C /work/riot/RIOT/boards/nucleo-f401re
"make" -C /work/riot/RIOT/boards/common/nucleo
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/stm32
"make" -C /work/riot/RIOT/cpu/cortexm_common
"make" -C /work/riot/RIOT/cpu/cortexm_common/periph
"make" -C /work/riot/RIOT/cpu/stm32/bootloader
"make" -C /work/riot/RIOT/cpu/stm32/periph
"make" -C /work/riot/RIOT/cpu/stm32/stmclk
"make" -C /work/riot/RIOT/cpu/stm32/vectors
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/embunit
"make" -C /work/riot/RIOT/sys/isrpipe
"make" -C /work/riot/RIOT/sys/luid
"make" -C /work/riot/RIOT/sys/memarray
"make" -C /work/riot/RIOT/sys/newlib_syscalls_default
"make" -C /work/riot/RIOT/sys/pm_layered
"make" -C /work/riot/RIOT/sys/random
"make" -C /work/riot/RIOT/sys/random/tinymt32
"make" -C /work/riot/RIOT/sys/stdio_uart
"make" -C /work/riot/RIOT/sys/test_utils/interactive_sync
"make" -C /work/riot/RIOT/sys/tsrb
   text	   data	    bss	    dec	    hex	filename
  40584	    148	   9884	  50616	   c5b8	/work/riot/RIOT/tests/pkg_libcose/bin/nucleo-f401re/tests_pkg_libcose.elf

Issues/PRs references

This PR is based on #14250 #14251 #14272 #14273 #14274 #14280 #14282 #14286 #14287

@aabadie aabadie added Area: build system Area: Build system Area: pkg Area: External package ports Area: tools Area: Supplementary tools Type: enhancement The issue suggests enhanceable parts / The PR enhances parts of the codebase / documentation Discussion: RFC The issue/PR is used as a discussion starting point about the item of the issue/PR labels Jun 15, 2020
@miri64
Copy link
Copy Markdown
Member

miri64 commented Jun 16, 2020

Isn't this leading to problem, when different applications have different compile time configurations?

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 16, 2020

when different applications have different compile time configurations?

If the original source code is unchanged, this is not a problem since all intermediate build files should go in the build directory of each application/board.
For CMake, only relic was generating a header at build time and this one is generated in the build directory, so not altering the original sources directory.

Think of it as git status showing a clean local copy of the package sources, e.g. not returning a list of modified or untracked files (except the .patched, .prepared files generated by the build system).

@miri64
Copy link
Copy Markdown
Member

miri64 commented Jun 16, 2020

Ah, I did not realize you put the two apart. This however then has the implication, that if the pkg uses different build systems than make (or cmake?) the learning curve for integrating this pkg might get steeper significantly / room for error in integration is increased.

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 16, 2020

For cmake, it's already difficult IMHO, this change doesn't make thing harder, just cleaner: out-of-source builds are forced (see #14286)

@kaspar030
Copy link
Copy Markdown
Contributor

* This location is the same as the current one: `$(BINDIRBASE)/pkg/$(BOARD)/$(PKG_NAME)`

"while you're at it", how about changing to $(BINDIR)/pkg/$(PKG_NAME)? there's no need for a different tree.

@kaspar030
Copy link
Copy Markdown
Contributor

kaspar030 commented Jun 16, 2020

This PR is not meant to be a replacement for git-cache. git-cache can still be useful on the CI, to avoid fetching all packages between each Murdock run and also because 2 packages are still cloned in each application/board build directory.

git-cache is still used instead of a direct clone from the network, right?

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 16, 2020

git-cache is still used instead of a direct clone from the network, right?

The logic is the same, so if gitcache is initialized, it will be used as usual. But for the developer, using gitcache becomes less useful: you would have the repo duplicated (in git-cache and in the global package directory).

@kaspar030
Copy link
Copy Markdown
Contributor

kaspar030 commented Jun 16, 2020

It is unclear to me how Murdock will react to such a change. Maybe it will be transparent ? or maybe there will be major problems I can't figure out now.

It should be ok(tm). Murdock never builds in parallel in a single checkout.

Previously, it would remove BINDIR after each build, so the checkout doesn't grow too much.
With this change, the pkg sources from one build would not be cleaned. This might lead to the checkout to enlarge, and ultimately fail due to out-of-diskspace. Murdock builds on tmpfs for speed, so if this causes a problem, we need to revert to getting package sources into the BINDIR.

What needs to be clear is that with shared (re-used) source directories, the logic must be rock solid even on failure / aborts. Before, each build would get their own fresh checkout and patch. Now, following builds on the same worker might fail, if something in the download step goes wrong in a previous build.

This can all be solved by making it possible to override the base directory for PKG_BUILD_DIR so Murdock can move it into BINDIR.

Maybe we could also adapt the workflow on Murdock so that each worker (or container) starts by fetching all packages and once this is done, starts all build jobs. In this case, it will probably saves a lot of I/O since no files won't be moved from git-cache to each application build directory anymore but only once between git-cache and the global package sources location.

Checking out from git-cache is fast. There's not much to gain, why download at the beginning?

@aabadie aabadie force-pushed the pr/pkg/global_pkg_dir branch 4 times, most recently from 859bf55 to 77860f8 Compare June 19, 2020 14:57
@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 19, 2020

Before, each build would get their own fresh checkout and patch. Now, following builds on the same worker might fail, if something in the download step goes wrong in a previous build.

Is it really an issue ? During the package download phase, several steps are performed:

  • clone from a git repository if it's not already in gitcache. If this fails, then the next build won't necessarily fail, it will just try to fetch it again. If it's already in gitcache, it will just be a copy of git objects and a checkout, which is all local and shouldn't fail that often.
  • apply patches: this will fail if the patch cannot be applied, so something is wrong with the package and thus all other builds would fail anyway with the current design.

This can all be solved by making it possible to override the base directory for PKG_BUILD_DIR so Murdock can move it into BINDIR.

Then Murdock won't behave the same as a developer would do locally, hiding potential problems during CI. By the way, for most of the packages this can already be done by overriding PKGDIRBASE but I won't recommend to use this for Murdock.

@kaspar030
Copy link
Copy Markdown
Contributor

Then Murdock won't behave the same as a developer would do locally, hiding potential problems during CI.

it should be almost the same, if both are still using out-of-tree builds. just that the source download folder is not shared between builds, but local to bindir.

@kaspar030
Copy link
Copy Markdown
Contributor

Is it really an issue ?

maybe not. it definitely is not an issue until it is. if it shows up, it shows up in the wrong build.

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 21, 2020

just that the source download folder is not shared between builds, but local to bindir.

So setting "PKGDIRBASE=$(BINDIRBASE)/pkg" variable to the build should work for packages using out-of-source builds: source code will be cloned in "$(BINDIRBASE)/pkg/$(PKG_NAME)" and files generated by the build (for cmake mainly) will go in "$(BINDIR)/$(PKG_NAME)". So for example with tests/pkg_relic built for native that would give:

  • source dir: tests/pkg_relic/bin/pkg/relic
  • build dir: tests/pkg_relic/bin/native/relic

if it shows up, it shows up in the wrong build.

This I don't get. If the package couldn't be fetched with git (which is done per worker only when building the package the first time it's added to RIOT or the version is changed), all builds related to this package would fail but this happen "rarely" and only during the initial development phase. If the package cannot be patched because the patches cannot be applied, all builds related to this package will fail anyway.

@kaspar030
Copy link
Copy Markdown
Contributor

So setting "PKGDIRBASE=$(BINDIRBASE)/pkg" variable to the build should work for packages using out-of-source builds

yes!

@kaspar030
Copy link
Copy Markdown
Contributor

if it shows up, it shows up in the wrong build.

This I don't get. If the package couldn't be fetched with git (which is done per worker only when building the package the first time it's added to RIOT or the version is changed), all builds related to this package would fail but this happen "rarely" and only during the initial development phase.

yes, you're right, that would show up only in builds for that package. I got confused with the increased build folder sizes. Those would show up in random builds.

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 25, 2020

Let's test this one on Murdock

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 26, 2020

Let's test this one on Murdock

It doesn't seem to cause major problems on Murdock. There were some tools that were initially missed: kconfig, cc2538-bsl-py, setsid, pic32prog, teensyloader-cli. I pushed a commit to fix them.

cc2538-bsl.py
make BOARD=remote-reva -C examples/hello-world flash
make: Entering directory '/work/riot/RIOT/examples/hello-world'
Building application "hello-world" for "remote-reva" with MCU "cc2538".

"make" -C /work/riot/RIOT/boards/remote-reva
"make" -C /work/riot/RIOT/boards/common/remote
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/cc2538
"make" -C /work/riot/RIOT/cpu/cc2538/periph
"make" -C /work/riot/RIOT/cpu/cortexm_common
"make" -C /work/riot/RIOT/cpu/cortexm_common/periph
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/newlib_syscalls_default
"make" -C /work/riot/RIOT/sys/pm_layered
"make" -C /work/riot/RIOT/sys/stdio_uart
   text	   data	    bss	    dec	    hex	filename
   9292	    112	   2560	  11964	   2ebc	/work/riot/RIOT/examples/hello-world/bin/remote-reva/hello-world.elf
[INFO] cc2538-bsl.py not found - fetching it from GitHub now
CC= CFLAGS= make -C /work/riot/RIOT/dist/tools/cc2538-bsl
[INFO] cloning cc2538-bsl
Cloning into '/work/riot/RIOT/build/pkg/cc2538-bsl'...
remote: Enumerating objects: 25, done.
remote: Counting objects: 100% (25/25), done.
remote: Compressing objects: 100% (19/19), done.
remote: Total 412 (delta 11), reused 16 (delta 6), pack-reused 387
Receiving objects: 100% (412/412), 148.21 KiB | 729.00 KiB/s, done.
Resolving deltas: 100% (179/179), done.
HEAD is now at 733e6f5 Merge pull request #92 from smlng/py3
[INFO] updating cc2538-bsl /work/riot/RIOT/build/pkg/cc2538-bsl/.pkg-state.git-downloaded
echo 733e6f5b496402e40ad6d12df3d0372e205b8883 > /work/riot/RIOT/build/pkg/cc2538-bsl/.pkg-state.git-downloaded
[INFO] patch cc2538-bsl
cp /work/riot/RIOT/build/pkg/cc2538-bsl/cc2538-bsl.py .
[INFO] cc2538-bsl.py successfully fetched!
/work/riot/RIOT/dist/tools/cc2538-bsl/cc2538-bsl.py -p "/dev/ttyUSB0"  -e -w -v -b 115200 /work/riot/RIOT/examples/hello-world/bin/remote-reva/hello-world.bin
setsid
diff --git a/Makefile.include b/Makefile.include
index 2c9bc19ab7..0fcf2dba66 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -648,7 +648,7 @@ endef
 # Check if setsid command is available on the system for debug target
 # This is not the case on MacOSX, so it must be built on the fly
 ifneq (,$(filter debug, $(MAKECMDGOALS)))
-  ifneq (0,$(shell which setsid 2>&1 > /dev/null ; echo $$?))
+  ifneq (0,$(shell which invalid 2>&1 > /dev/null ; echo $$?))
     SETSID = $(RIOTTOOLS)/setsid/setsid
     $(call target-export-variables,debug,$(SETSID))
     DEBUGDEPS += $(SETSID)
make BOARD=nucleo-l073rz -C examples/hello-world debug
make: Entering directory '/work/riot/RIOT/examples/hello-world'
[INFO] setsid binary not found - building it from source now
[INFO] cloning setsid
Cloning into '/work/riot/RIOT/dist/tools/setsid/bin'...
remote: Enumerating objects: 13, done.
remote: Total 13 (delta 0), reused 0 (delta 0), pack-reused 13
Unpacking objects: 100% (13/13), 4.04 KiB | 1.35 MiB/s, done.
HEAD is now at e5b851d add license
[INFO] updating setsid /work/riot/RIOT/dist/tools/setsid/bin/.pkg-state.git-downloaded
echo e5b851df41591021baf5cf88d4e41572baf8e08b > /work/riot/RIOT/dist/tools/setsid/bin/.pkg-state.git-downloaded
[INFO] patch setsid
[INFO] compiling setsid from source now
make BINDIR=/work/riot/RIOT/dist/tools/setsid/bin -C /work/riot/RIOT/dist/tools/setsid/bin
gcc -o setsid setsid.c
setsid.c: In function ‘main’:
setsid.c:104:21: warning: implicit declaration of function ‘wait’ [-Wimplicit-function-declaration]
  104 |                 if (wait(&status) != pid) {
      |                     ^~~~
[INFO] setsid binary successfully built!
/work/riot/RIOT/dist/tools/openocd/openocd.sh debug /work/riot/RIOT/examples/hello-world/bin/nucleo-l073rz/hello-world.elf
### Starting Debugging ###
pic32prog
make BOARD=pic32-wifire -C examples/hello-world flash-only
make: Entering directory '/work/riot/RIOT/examples/hello-world'
[INFO] pic32prog binary not found - building it from source now
make -C /work/riot/RIOT/dist/tools/pic32prog
[INFO] cloning pic32prog
Cloning into '/work/riot/RIOT/dist/tools/pic32prog/bin'...
remote: Enumerating objects: 135, done.
remote: Counting objects: 100% (135/135), done.
remote: Compressing objects: 100% (88/88), done.
remote: Total 1290 (delta 83), reused 90 (delta 47), pack-reused 1155
Receiving objects: 100% (1290/1290), 5.01 MiB | 338.00 KiB/s, done.
Resolving deltas: 100% (900/900), done.
HEAD is now at b9f8db3 Fix build warnings.
[INFO] updating pic32prog /work/riot/RIOT/dist/tools/pic32prog/bin/.pkg-state.git-downloaded
echo b9f8db3b352804392b02b42475fc42874ac8bf04 > /work/riot/RIOT/dist/tools/pic32prog/bin/.pkg-state.git-downloaded
[INFO] patch pic32prog
[INFO] compiling pic32prog from source now
make: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin'
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o pic32prog.o pic32prog.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o target.o target.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o executive.o executive.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o serial.o serial.c
git submodule update --init
Submodule 'hidapi' (https://github.com/signal11/hidapi.git) registered for path 'hidapi'
Cloning into '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'...
Submodule path 'hidapi': checked out 'b5b2e1779b6cd2edda3066bbbf0921a2d6b1c3c0'
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-pickit2.o adapter-pickit2.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-hidboot.o adapter-hidboot.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-an1388.o adapter-an1388.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-bitbang.o adapter-bitbang.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-stk500v2.o adapter-stk500v2.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-uhb.o adapter-uhb.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-an1388-uart.o adapter-an1388-uart.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o configure.o configure.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o family-mx1.o family-mx1.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o family-mx3.o family-mx3.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o family-mz.o family-mz.c
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o family-mm.o family-mm.c
if [ ! -f hidapi/configure ]; then cd hidapi && ./bootstrap; fi
+ autoreconf --install --verbose --force
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:25: installing './ar-lib'
configure.ac:25: installing './compile'
configure.ac:26: installing './config.guess'
configure.ac:26: installing './config.sub'
configure.ac:22: installing './install-sh'
configure.ac:22: installing './missing'
hidtest/Makefile.am: installing './depcomp'
autoreconf: Leaving directory `.'
cd hidapi && ./configure --enable-shared=no CFLAGS=''
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for gcc... gcc
checking whether we are using the GNU Objective C compiler... no
checking whether gcc accepts -g... no
checking dependency style of gcc... gcc3
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether make supports nested variables... (cached) yes
checking operating system... x86_64-pc-linux-gnu
 (Linux back-end)
checking for libudev... yes
checking for clock_gettime in -lrt... yes
checking for libusb... yes
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating pc/hidapi-hidraw.pc
config.status: creating pc/hidapi-libusb.pc
config.status: creating Makefile
config.status: creating hidtest/Makefile
config.status: creating libusb/Makefile
config.status: creating linux/Makefile
config.status: creating mac/Makefile
config.status: creating testgui/Makefile
config.status: creating windows/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
make -C hidapi
make[1]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
make  all-recursive
make[2]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
Making all in linux
make[3]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/linux'
  CC       hid.lo
  CCLD     libhidapi-hidraw.la
make[3]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/linux'
Making all in libusb
make[3]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/libusb'
  CC       hid.lo
  CCLD     libhidapi-libusb.la
make[3]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/libusb'
Making all in hidtest
make[3]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/hidtest'
  CXX      hidtest.o
  CXXLD    hidtest-libusb
  CXXLD    hidtest-hidraw
make[3]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi/hidtest'
make[3]: Entering directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
make[3]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
make[2]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
make[1]: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin/hidapi'
gcc -Wall -g -O -Ihidapi/hidapi -DGITCOUNT='"235"' -DUSE_MPSSE   -c -o adapter-mpsse.o adapter-mpsse.c
gcc -g -o pic32prog pic32prog.o target.o executive.o serial.o adapter-pickit2.o adapter-hidboot.o adapter-an1388.o adapter-bitbang.o adapter-stk500v2.o adapter-uhb.o adapter-an1388-uart.o configure.o family-mx1.o family-mx3.o family-mz.o family-mm.o hidapi/libusb/.libs/libhidapi-libusb.a adapter-mpsse.o -Wl,-Bstatic -lusb-1.0 -Wl,-Bdynamic -lpthread -ludev
make: Leaving directory '/work/riot/RIOT/dist/tools/pic32prog/bin'
[INFO] pic32prog binary successfully built!
/work/riot/RIOT/dist/tools/pic32prog/pic32prog /work/riot/RIOT/examples/hello-world/bin/pic32-wifire/hello-world.hex
teensyloader-cli
make BOARD=teensy31 -C examples/hello-world flash
make: Entering directory '/work/riot/RIOT/examples/hello-world'
Building application "hello-world" for "teensy31" with MCU "kinetis".

"make" -C /work/riot/RIOT/boards/teensy31
"make" -C /work/riot/RIOT/core
"make" -C /work/riot/RIOT/cpu/kinetis
"make" -C /work/riot/RIOT/cpu/cortexm_common
"make" -C /work/riot/RIOT/cpu/cortexm_common/periph
"make" -C /work/riot/RIOT/cpu/kinetis/periph
"make" -C /work/riot/RIOT/drivers
"make" -C /work/riot/RIOT/drivers/periph_common
"make" -C /work/riot/RIOT/sys
"make" -C /work/riot/RIOT/sys/auto_init
"make" -C /work/riot/RIOT/sys/newlib_syscalls_default
"make" -C /work/riot/RIOT/sys/stdio_uart
   text	   data	    bss	    dec	    hex	filename
   9480	    108	   2564	  12152	   2f78	/work/riot/RIOT/examples/hello-world/bin/teensy31/hello-world.elf
[INFO] teensy_loader binary not found - building it from source now
CC= CFLAGS= make -C /work/riot/RIOT/dist/tools/teensy-loader-cli
[INFO] cloning teensy-loader-cli
Cloning into '/work/riot/RIOT/dist/tools/teensy-loader-cli/bin'...
remote: Enumerating objects: 33, done.
remote: Counting objects: 100% (33/33), done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 220 (delta 11), reused 18 (delta 3), pack-reused 187
Receiving objects: 100% (220/220), 278.80 KiB | 852.00 KiB/s, done.
Resolving deltas: 100% (101/101), done.
HEAD is now at 76921ed Merge pull request #39 from stapelberg/patch-1
[INFO] updating teensy-loader-cli /work/riot/RIOT/dist/tools/teensy-loader-cli/bin/.pkg-state.git-downloaded
echo 76921edbdd81ae99b869b104404c16c06b0a266f > /work/riot/RIOT/dist/tools/teensy-loader-cli/bin/.pkg-state.git-downloaded
[INFO] patch teensy-loader-cli
env -i PATH=/home/aabadie/.local/bin:/work/tools/mips-mti-elf/2016.05-03/bin:/work/tools/avr8-gnu-toolchain-linux_x86_64/bin:/work/tools/riscv-none-gcc/8.2.0-2.2-20190521-0004/bin:/work/tools/gcc-arm-none-eabi-9-2019-q4-major/bin/:/home/aabadie/.cargo/bin:/home/aabadie/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/work/tools/packer TERM=xterm-256color "make" -C /work/riot/RIOT/dist/tools/teensy-loader-cli/bin
make: Entering directory '/work/riot/RIOT/dist/tools/teensy-loader-cli/bin'
cc -O2 -Wall  -s -DUSE_LIBUSB -o teensy_loader_cli teensy_loader_cli.c -lusb 
make: Leaving directory '/work/riot/RIOT/dist/tools/teensy-loader-cli/bin'
mv /work/riot/RIOT/dist/tools/teensy-loader-cli/bin/teensy_loader_cli ./teensy_loader
[INFO] teensy_loader binary successfully build!
/work/riot/RIOT/dist/tools/teensy-loader-cli/teensy_loader --mcu=mk20dx256 /work/riot/RIOT/examples/hello-world/bin/teensy31/hello-world.hex
Unable to open device

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 26, 2020

@kaspar030, I think we are good here. May I squash ?

@kaspar030
Copy link
Copy Markdown
Contributor

@kaspar030, I think we are good here. May I squash ?

yes, please squash!

@aabadie aabadie force-pushed the pr/pkg/global_pkg_dir branch from ea3a0cd to 42912b4 Compare June 26, 2020 07:25
@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 26, 2020

squashed !

@miri64
Copy link
Copy Markdown
Member

miri64 commented Jun 26, 2020

Any chance of this PR getting merged until noon-ish?

@kaspar030
Copy link
Copy Markdown
Contributor

Any chance of this PR getting merged until noon-ish?

yes, likely!

@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 26, 2020

All green here @kaspar030 !

@kaspar030
Copy link
Copy Markdown
Contributor

ACK.

@kaspar030 kaspar030 merged commit c092529 into RIOT-OS:master Jun 26, 2020
@aabadie aabadie deleted the pr/pkg/global_pkg_dir branch June 26, 2020 09:06
@aabadie
Copy link
Copy Markdown
Contributor Author

aabadie commented Jun 26, 2020

Awesome! Thanks a lot for reviewing and merging @kaspar030 !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Area: build system Area: Build system Area: pkg Area: External package ports Area: tools Area: Supplementary tools CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR Discussion: RFC The issue/PR is used as a discussion starting point about the item of the issue/PR Type: enhancement The issue suggests enhanceable parts / The PR enhances parts of the codebase / documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants