From 3b1749e329d33b43a2db7dcbb2dc29bd3215f4b0 Mon Sep 17 00:00:00 2001 From: DMG Date: Sat, 9 Nov 2024 16:37:24 -0800 Subject: [PATCH] Fix: For RedHat, Explictly Install lld as a Dependency RedHat-Ubi8-Clang builds had started to fail because lld (linker) was not being found. Now we explicitly include "lld" on the "microdnf install" line along with $compiler and the other items, and it works again. --- .github/workflows/linux.yaml | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index dba059660..7d0695302 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -79,7 +79,7 @@ jobs: if: contains(matrix.os, 'redhat') run: | if [ ${{ matrix.compiler }} = gcc ]; then compiler=gcc-c++; else compiler=llvm-toolset; fi - microdnf -y install $compiler pkgconf cmake openssl-devel zlib-devel libcurl-devel git python3-pip unzip + microdnf -y install $compiler lld pkgconf cmake openssl-devel zlib-devel libcurl-devel git python3-pip unzip curl -LO https://github.com/ninja-build/ninja/releases/latest/download/ninja-linux.zip unzip ninja-linux.zip mv ninja /usr/local/bin diff --git a/version.txt b/version.txt index 313ca67fc..a2f6dce59 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.4.11.20241018 +0.4.12.20241109