mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-20 12:40:18 +00:00
Updated the Solus eopkg GitHub Actions workflow to detect and remove legacy openssl-11 before dependency installation, preventing the file-conflict failure shown in your CI log while keeping behavior no-op on images that don’t have openssl-11.
Kept the rest of the build flow unchanged (ypkg build, artifact collection/upload)
This commit is contained in:
5
.github/workflows/solus-eopkg-build.yml
vendored
5
.github/workflows/solus-eopkg-build.yml
vendored
@@ -62,6 +62,11 @@ jobs:
|
|||||||
sh -lc '
|
sh -lc '
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
eopkg update-repo -y
|
eopkg update-repo -y
|
||||||
|
# Some container images still ship openssl-11, which conflicts
|
||||||
|
# with current openssl files during dependency installation.
|
||||||
|
if eopkg list-installed | awk "{print \$1}" | grep -qx "openssl-11"; then
|
||||||
|
eopkg remove -y openssl-11
|
||||||
|
fi
|
||||||
eopkg install -y ypkg git
|
eopkg install -y ypkg git
|
||||||
ypkg build "$PACKAGE_YML"
|
ypkg build "$PACKAGE_YML"
|
||||||
mkdir -p /workspace/artifacts
|
mkdir -p /workspace/artifacts
|
||||||
|
|||||||
Reference in New Issue
Block a user