Resolving Hex dependencies... Resolution completed in 0.083s Unchanged: bimap 1.3.0 bunch 1.6.1 circular_buffer 1.0.0 coerce 1.0.2 crc 0.10.6 elixir_make 0.9.0 heap 2.0.2 interactive_cmd 0.1.4 jason 1.4.4 membrane_aac_format 0.8.0 membrane_aac_plugin 0.19.1 membrane_core 1.2.7 membrane_h264_format 0.6.1 membrane_h265_format 0.2.0 membrane_h26x_plugin 0.10.7 membrane_mpegts_plugin 0.6.0 membrane_timestamp_queue 0.2.2 nerves 1.14.1 nerves_discovery 0.1.2 nerves_logging 0.2.4 nerves_runtime 0.13.12 nerves_system_bbb 2.29.3 nerves_system_br 1.33.5 nerves_system_grisp2 0.17.3 nerves_system_mangopi_mq_pro 0.15.3 nerves_system_osd32mp1 0.24.3 nerves_system_qemu_aarch64 0.3.3 nerves_system_rpi 2.0.2 nerves_system_rpi0 2.0.2 nerves_system_rpi0_2 2.0.2 nerves_system_rpi2 2.0.2 nerves_system_rpi3 2.0.2 nerves_system_rpi4 2.0.2 nerves_system_rpi5 2.0.2 nerves_system_x86_64 1.33.3 nerves_toolchain_aarch64_nerves_linux_gnu 13.2.0 nerves_toolchain_armv6_nerves_linux_gnueabihf 13.2.0 nerves_toolchain_armv7_nerves_linux_gnueabihf 13.2.0 nerves_toolchain_ctng 1.10.0 nerves_toolchain_riscv64_nerves_linux_gnu 13.2.0 nerves_toolchain_x86_64_nerves_linux_musl 13.2.0 nerves_uevent 0.1.5 numbers 5.2.4 property_table 0.3.3 qex 0.5.2 ratio 4.0.1 ring_logger 0.11.5 shoehorn 0.9.3 tablet 0.3.2 telemetry 1.4.1 toolshed 0.4.2 uboot_env 1.0.2 All dependencies have been fetched ==> jason Compiling 10 files (.ex) Generated jason app ==> tablet Compiling 2 files (.ex) Generated tablet app ==> elixir_make Compiling 8 files (.ex) Generated elixir_make app ==> nerves_discovery Compiling 5 files (.ex) Generated nerves_discovery app ==> interactive_cmd Compiling 1 file (.ex) Generated interactive_cmd app ==> nerves HOST_CC port.o HOST_LD port Compiling 50 files (.ex) Generated nerves app ==> nerves_compatibility_test Nerves environment MIX_TARGET: x86_64 MIX_ENV: prod Checking for prebuilt Nerves artifacts... Found nerves_system_x86_64 in cache /home/nerves/.nerves/artifacts/nerves_system_x86_64-portable-1.33.3 Found nerves_toolchain_x86_64_nerves_linux_musl in cache /home/nerves/.nerves/artifacts/nerves_toolchain_x86_64_nerves_linux_musl-linux_aarch64-13.2.0 ==> nerves ==> nerves_system_br Generated nerves_system_br app ==> nerves_toolchain_ctng Compiling 1 file (.ex) Generated nerves_toolchain_ctng app ==> nerves_toolchain_x86_64_nerves_linux_musl Generated nerves_toolchain_x86_64_nerves_linux_musl app ==> nerves_system_x86_64 Generated nerves_system_x86_64 app ==> nerves_compatibility_test Nerves environment MIX_TARGET: x86_64 MIX_ENV: prod ==> circular_buffer Compiling 1 file (.ex) Generated circular_buffer app ==> coerce Compiling 3 files (.ex) Generated coerce app ==> bunch Compiling 19 files (.ex) Generated bunch app ==> numbers Compiling 7 files (.ex) Generated numbers app ==> nerves_logging CC kmsg_tailer.o LD kmsg_tailer Compiling 5 files (.ex) Generated nerves_logging app ==> crc C checksum_xor.c C crc_8.c C crc_algorithm.c C crc_model.c C crc_nif.c C crc_resource.c C xnif_slice.c LD crc_nif.so Compiling 7 files (.erl) Compiling 3 files (.ex) Generated crc app ==> ratio Compiling 5 files (.ex) Generated ratio app ==> ring_logger Compiling 7 files (.ex) Generated ring_logger app ==> shoehorn Compiling 8 files (.ex) Generated shoehorn app ==> nerves_compatibility_test ===> Analyzing applications... ===> Compiling telemetry ==> membrane_h265_format Compiling 1 file (.ex) Generated membrane_h265_format app ==> membrane_h264_format Compiling 1 file (.ex) Generated membrane_h264_format app ==> heap Compiling 4 files (.ex) Generated heap app ==> bimap Compiling 2 files (.ex) Generated bimap app ==> membrane_aac_format Compiling 1 file (.ex) Generated membrane_aac_format app ==> uboot_env Compiling 5 files (.ex) Generated uboot_env app ==> qex Compiling 4 files (.ex) warning: x..y inside match is deprecated, you must always match on the step: x..y//var or x..y//_ if you want to ignore it lib/qex.ex:45: Qex.new/1 Generated qex app ==> membrane_core Compiling 139 files (.ex) Generated membrane_core app ==> membrane_aac_plugin Compiling 6 files (.ex) warning: a struct for Membrane.Buffer is expected on struct update: %Membrane.Buffer{ buffer | payload: Membrane.AAC.Parser.ADTS.payload_to_adts(buffer.payload, ctx.pads.output.stream_format) } but got type: dynamic(%{..., pts: integer()}) where "buffer" was given the type: # type: dynamic(%{..., pts: integer()}) # from: lib/membrane/aac/parser.ex:185:12 buffer = %{buffer | pts: round(Ratio.to_float(timestamp))} when defining the variable "buffer", you must also pattern match on "%Membrane.Buffer{}". hint: given pattern matching is enough to catch typing errors, you may optionally convert the struct update into a map update. For example, instead of: user = some_function() %User{user | name: "John Doe"} it is enough to write: %User{} = user = some_function() %{user | name: "John Doe"} typing violation found at: │ 190 │ %Buffer{ │ ~ │ └─ lib/membrane/aac/parser.ex:190:11: Membrane.AAC.Parser.handle_buffer/4 warning: a struct for Membrane.AAC.Filler.State is expected on struct update: %Membrane.AAC.Filler.State{state | frame_duration: new_duration, channels: stream_format.channels} but got type: dynamic() where "state" was given the type: # type: dynamic() # from: lib/membrane/aac/filler.ex:71:57 state when defining the variable "state", you must also pattern match on "%Membrane.AAC.Filler.State{}". hint: given pattern matching is enough to catch typing errors, you may optionally convert the struct update into a map update. For example, instead of: user = some_function() %User{user | name: "John Doe"} it is enough to write: %User{} = user = some_function() %{user | name: "John Doe"} typing violation found at: │ 75 │ state = %State{state | frame_duration: new_duration, channels: stream_format.channels} │ ~ │ └─ lib/membrane/aac/filler.ex:75:13: Membrane.AAC.Filler.handle_stream_format/4 warning: a struct for Membrane.Buffer is expected on struct update: %Membrane.Buffer{ buffer | payload: silent_frame_payload, pts: round(timestamp), dts: round(timestamp) } but got type: dynamic() where "buffer" was given the type: # type: dynamic() # from: lib/membrane/aac/filler.ex:81:29 buffer when defining the variable "buffer", you must also pattern match on "%Membrane.Buffer{}". hint: given pattern matching is enough to catch typing errors, you may optionally convert the struct update into a map update. For example, instead of: user = some_function() %User{user | name: "John Doe"} it is enough to write: %User{} = user = some_function() %{user | name: "John Doe"} typing violation found at: │ 96 │ %Buffer{ │ ~ │ └─ lib/membrane/aac/filler.ex:96:9: Membrane.AAC.Filler.handle_buffer/4 Generated membrane_aac_plugin app ==> membrane_h26x_plugin Compiling 31 files (.ex) Generated membrane_h26x_plugin app ==> membrane_timestamp_queue Compiling 1 file (.ex) Generated membrane_timestamp_queue app ==> membrane_mpegts_plugin Compiling 8 files (.ex) Generated membrane_mpegts_plugin app ==> property_table Compiling 8 files (.ex) Generated property_table app ==> nerves_uevent CC uevent.o LD uevent Compiling 5 files (.ex) Generated nerves_uevent app ==> nerves_runtime Compiling 14 files (.ex) Generated nerves_runtime app ==> toolshed Compiling 5 files (.ex) Generated toolshed app ==> nerves_compatibility_test Compiling 2 files (.ex) Generated nerves_compatibility_test app |nerves| Building OTP Release... * [Nerves] validating vm.args * skipping runtime configuration (config/runtime.exs not found) * creating _build/x86_64/rel/nerves_compatibility_test/releases/0.1.0/vm.args Updating base firmware image with Erlang release... Copying rootfs_overlay: /work/proj/_build/x86_64/nerves/rootfs_overlay Copying rootfs_overlay: /work/proj/rootfs_overlay Building /work/proj/_build/x86_64/nerves/images/nerves_compatibility_test.fw... Firmware UUID: raw-pudding (bebdad88-cc86-58c9-4f58-23fc168430ed) Firmware built successfully! 🎉 Now you may install it to a MicroSD card using `mix burn` or upload it to a device with `mix upload` or `mix firmware.gen.script`+`./upload.sh`. * Cleaning membrane_mpegts_plugin ==> nerves ==> nerves_compatibility_test Nerves environment MIX_TARGET: x86_64 MIX_ENV: prod ==> membrane_mpegts_plugin Compiling 8 files (.ex) Generated membrane_mpegts_plugin app ==> nerves_compatibility_test Generated nerves_compatibility_test app |nerves| Building OTP Release... * [Nerves] validating vm.args * skipping runtime configuration (config/runtime.exs not found) * creating _build/x86_64/rel/nerves_compatibility_test/releases/0.1.0/vm.args Updating base firmware image with Erlang release... Copying rootfs_overlay: /work/proj/_build/x86_64/nerves/rootfs_overlay Copying rootfs_overlay: /work/proj/rootfs_overlay Building /work/proj/_build/x86_64/nerves/images/nerves_compatibility_test.fw... Firmware UUID: visa-era (ec4b3f12-cfae-5cab-e619-8828cead2694) Firmware built successfully! 🎉 Now you may install it to a MicroSD card using `mix burn` or upload it to a device with `mix upload` or `mix firmware.gen.script`+`./upload.sh`.