on github action:
name: rocky build workflows
on:
push:
branches:
- 'main'
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.runner }}
container:
image: rockylinux/rockylinux:${{ matrix.os_version }}
options: --platform ${{ matrix.platform }}
strategy:
matrix:
include:
- arch: arm64
runner: ubuntu-24.04-arm
platform: linux/arm64
artifact: Arm64
os_version: 9
steps:
- name: Checkout main repository code
uses: actions/checkout@v4
- name: Set TERM variable
run: echo "TERM=xterm" >> $GITHUB_ENV
- name: install system package
run: |
dnf update -y
dnf install gcc g++ make git jq unzip wget -y
update failure:
install failure:
Complete!
Last metadata expiration check: 0:00:07 ago on Thu Jul 3 01:53:35 2025.
Error:
(try to add ‘–skip-broken’ to skip uninstallable packages or ‘–nobest’ to use not only best candidate packages)
Problem 1: package gcc-11.5.0-5.el9_5.aarch64 from appstream requires glibc-devel >= 2.2.90-12, but none of the providers can be installed
- conflicting requests
- nothing provides glibc = 2.34-168.el9_6.19 needed by glibc-devel-2.34-168.el9_6.19.aarch64 from appstream
Problem 2: package gcc-c+±11.5.0-5.el9_5.aarch64 from appstream requires gcc = 11.5.0-5.el9_5, but none of the providers can be installed - package gcc-11.5.0-5.el9_5.aarch64 from appstream requires glibc-devel >= 2.2.90-12, but none of the providers can be installed
- conflicting requests
- nothing provides glibc = 2.34-168.el9_6.19 needed by glibc-devel-2.34-168.el9_6.19.aarch64 from appstream
Error: Process completed with exit code 1.