zmk-docker icon indicating copy to clipboard operation
zmk-docker copied to clipboard

Build failing

Open BenBlumer opened this issue 1 year ago • 2 comments

It looks like the build is failing again in the Actions for certain architectures.

It's also failing on my local machine (WSL2 - Ubuntu 22.04 x86_64):

$ git clone [email protected]:zmkfirmware/zmk-docker.git $ cd zmk-docker $ docker build .

...
Processing triggers for libc-bin (2.31-0ubuntu9.2) ...
Processing triggers for ca-certificates (20230311ubuntu0.20.04.1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
ERROR: Could not install packages due to an EnvironmentError: 404 Client Error: Not Found for url: https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v/scripts/requirements-base.txt

The command '/bin/sh -c apt-get -y update   && if [ "$(uname -m)" = "x86_64" ]; then gcc_multilib="gcc-multilib"; else gcc_multilib=""; fi   && apt-get -y install --no-install-recommends   ccache   file   gcc   "${gcc_multilib}"   git   gperf   make   ninja-build   python3   python3-dev   python3-pip   python3-setuptools   python3-wheel   ssh   && pip3 install   -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-base.txt   && pip3 install cmake   && apt-get remove -y --purge   python3-dev   python3-pip   python3-setuptools   python3-wheel   && apt-get clean   && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 1

BenBlumer avatar Nov 11 '23 20:11 BenBlumer