Add GitHub workflow to create docker image for mlir-tensorrt
project
#3
post-merge-container-update-mlir-tensorrt.yml
on: pull_request
build
4m 29s
Annotations
1 error
build
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -e\ncase \"${LINUX_DISTRO}\" in\n \"ubuntu\"*)\n apt-get update\n apt-get install -y \\\n wget gnupg apt-utils curl \\\n default-jdk-headless default-jre-headless \\\n git python3.10 python3.10-distutils python3.10-dev python3.10-venv \\\n python3-pip libprotobuf-dev protobuf-compiler libsndfile1 libcudnn8 \\\n cuda-nsight-systems-${CUDA_VERSION%.*} \\\n openmpi-bin openmpi-common libopenmpi-dev\n apt-get clean -y\n rm -rf /var/lib/apt/lists/*\n ;;\n \"rockylinux\"*)\n # This script mostly comes from RAPIDS manylinux-compatible rockylinux\n # container build script.\n dnf update -y\n dnf install -y epel-release\n dnf update -y\n dnf install -y \\\n which wget gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite \\\n sqlite-devel xz xz-devel libffi-devel curl git ncurses-devel \\\n openssh-clients libcudnn8-devel zip jq \\\n protobuf-compiler autoconf automake libtool dnf-plugins-core cmake\n dnf config-manager --set-enabled powertools\n dnf -y install gcc-toolset-11-gcc gcc-toolset-11-gcc-c++\n dnf -y install ninja-build ccache\n dnf clean all\n # Enable GCC11 toolset as default.\n echo -e ' \\\n #!/bin/bash\\n \\\n source /opt/rh/gcc-toolset-11/enable \\\n ' > /etc/profile.d/enable_devtools.sh\n # Build and install openssl 1.1. This is required to build modern Python\n # versions. Paths from this install are passed to pyenv when building Python (see below\n # Python setup section).\n pushd tmp\n wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz\n tar -xzvf openssl-1.1.1k.tar.gz\n cd openssl-1.1.1k\n ./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib no-shared zlib-dynamic\n make\n make install\n popd\n ;;\n *)\n echo \"Unsupported linux distro: ${LINUX_DISTRO}\"\n exit 1\n ;;\nesac\n" did not complete successfully: exit code: 1
|