Skip to content

Deploy

Deploy #615

Manually triggered June 22, 2024 00:43
Status Failure
Total duration 2m 22s
Artifacts

deploy.yml

on: workflow_dispatch
Deploy  /  Prepare workflow environment
5s
Deploy / Prepare workflow environment
Triggered via Workflow Dispatch?
0s
Triggered via Workflow Dispatch?
Deploy  /  Build (manifest)
35s
Deploy / Build (manifest)
Deploy  /  Build nohealthcheck (manifest)
0s
Deploy / Build nohealthcheck (manifest)
Matrix: Deploy / Build
Matrix: Deploy / Build nohealthcheck
Fit to window
Zoom out
Zoom in

Annotations

1 error
Deploy / Build (manifest)
buildx failed with: ERROR: failed to solve: process "/bin/bash -o pipefail -c set -x && TEMP_PACKAGES=() && KEPT_PACKAGES=() && TEMP_PACKAGES+=(build-essential) && TEMP_PACKAGES+=(pkg-config) && TEMP_PACKAGES+=(cmake) && TEMP_PACKAGES+=(git) && TEMP_PACKAGES+=(automake) && TEMP_PACKAGES+=(autoconf) && KEPT_PACKAGES+=(gawk) && KEPT_PACKAGES+=(ncat) && TEMP_PACKAGES+=(gnupg2) && TEMP_PACKAGES+=(file) && TEMP_PACKAGES+=(curl) && TEMP_PACKAGES+=(ca-certificates) && KEPT_PACKAGES+=(libusb-1.0-0) && TEMP_PACKAGES+=(libusb-1.0-0-dev) && KEPT_PACKAGES+=(libxml2) && TEMP_PACKAGES+=(libxml2-dev) && KEPT_PACKAGES+=(libxslt1.1) && TEMP_PACKAGES+=(libxslt1-dev) && KEPT_PACKAGES+=(mime-support) && KEPT_PACKAGES+=(libncurses5) && TEMP_PACKAGES+=(libncurses5-dev) && KEPT_PACKAGES+=(libtecla1) && TEMP_PACKAGES+=(libtecla-dev) && KEPT_PACKAGES+=(libedit2) && TEMP_PACKAGES+=(libedit-dev) && KEPT_PACKAGES+=(libfftw3-bin) && TEMP_PACKAGES+=(libfftw3-dev) && KEPT_PACKAGES+=(libiio0) && TEMP_PACKAGES+=(libiio-dev) && KEPT_PACKAGES+=(libad9361-0) && TEMP_PACKAGES+=(libad9361-dev) && KEPT_PACKAGES+=(avahi-daemon) && TEMP_PACKAGES+=(libavahi-client-dev) && KEPT_PACKAGES+=(libavahi-client3) && TEMP_PACKAGES+=(libavahi-common-dev) && KEPT_PACKAGES+=(libavahi-common3) && KEPT_PACKAGES+=(libavahi-common-data) && TEMP_PACKAGES+=(libavahi-core-dev) && KEPT_PACKAGES+=(libavahi-core7) && TEMP_PACKAGES+=(libdbus-1-dev) && KEPT_PACKAGES+=(libdbus-1-3) && KEPT_PACKAGES+=(net-tools) && apt-get update && apt-get install -y --no-install-recommends ${KEPT_PACKAGES[@]} ${TEMP_PACKAGES[@]} && sh -c \"echo deb-src http://download.opensuse.org/repositories/multimedia:/xiph/Debian_9.0/ ./ >>/etc/apt/sources.list.d/icecast.list\" && curl -s --location http://icecast.org/multimedia-obs.key | apt-key add - && KEPT_PACKAGES+=(icecast2) && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ${KEPT_PACKAGES[@]} ${TEMP_PACKAGES[@]} && mkdir -p /etc/icecast2/logs && chown -R icecast2 /etc/icecast2 && git clone https://gitea.osmocom.org/sdr/rtl-sdr.git /src/rtl-sdr && pushd /src/rtl-sdr && git checkout \"${BRANCH_RTLSDR}\" && echo \"rtl-sdr ${BRANCH_RTLSDR}\" >> /VERSIONS && mkdir -p /src/rtl-sdr/build && pushd /src/rtl-sdr/build && cmake ../ -DINSTALL_UDEV_RULES=ON -Wno-dev && make -Wstringop-truncation && make -Wstringop-truncation install && cp -v /src/rtl-sdr/rtl-sdr.rules /etc/udev/rules.d/ && popd && popd && git clone https://github.com/Nuand/bladeRF.git /src/bladeRF && pushd /src/bladeRF && BRANCH_BLADERF=$(git tag --sort=\"creatordate\" | grep -P '^[\\d\\.]+$' | tail -1) && git checkout \"$BRANCH_BLADERF\" && mkdir -p /src/bladeRF/build && pushd /src/bladeRF/build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DINSTALL_UDEV_RULES=ON ../ && make all && make install && popd && popd && BLADERF_RBF_PATH=\"/usr/share/Nuand/bladeRF\" && mkdir -p \"$BLADERF_RBF_PATH\" && curl -o \"$BLADERF_RBF_PATH/hostedxA4.rbf\" https://www.nuand.com/fpga/hostedxA4-latest.rbf && curl -o \"$BLADERF_RBF_PATH/hostedxA9.rbf\" https://www.nuand.com/fpga/hostedxA9-latest.rbf && curl -o \"$BLADERF_RBF_PATH/hostedx40.rbf\" https://www.nuand.com/fpga/hostedx40-latest.rbf && curl -o \"$BLADERF_RBF_PATH/hostedx115.rbf\" https://www.nuand.com/fpga/hostedx115-latest.rbf && curl -o \"$BLADERF_RBF_PATH/adsbxA4.rbf\" https://www.nuand.com/fpga/adsbxA4.rbf && curl -o \"$BLADERF_RBF_PATH/adsbxA9.rbf\" https://www.nuand.com/fpga/adsbxA9.rbf && curl -o \"$BLADERF_RBF_PATH/adsbx40.rbf\" https://www.nuand.com/fpga/adsbx40.rbf && curl -o \"$BLADERF_RBF_PATH/adsbx115.rbf\" https://www.nuand.com/fpga/adsbx115.rbf && git clone https://github.com/mossmann/hackrf.git /src/hackrf && pushd /src/hackrf && BRANCH_HACKRF=$(git tag --sort=\"creatordate\" | grep -P '^v[\\d\\.]+$' | tail -1) && git checkout \"$BRANCH_HACKRF\" && mkdir -p /src/hackrf/host/build && pushd /sr