diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index 32033af..775afc3 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -26,12 +26,12 @@ jobs: steps: - name: Environment check run: | + echo "BUILD_USER: $(whoami)" && echo + echo "PWD: $(pwd)" && echo hostnamectl && echo + lscpu && echo env && echo - whoami && echo - pwd && echo - tree && echo - git log -1 && echo + docker info && echo Clone-Repo: @@ -47,6 +47,9 @@ jobs: cd ansible-dev git checkout ${{ env.GITHUB_REF_NAME }} + - name: Verify current commit + run: cd ansible-dev && git log -1 + Build-Images: runs-on: self-hosted diff --git a/build/Containerfile.centos9 b/build/Containerfile.centos9 index 6158745..5002972 100644 --- a/build/Containerfile.centos9 +++ b/build/Containerfile.centos9 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint RUN dnf update -y \ - && dnf install -y python3-pip git systemd nodejs tree \ + && dnf install -y python3-pip python3-devel gcc git systemd nodejs tree procps-ng \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt diff --git a/build/Containerfile.debian12 b/build/Containerfile.debian12 index 4991216..16e8f6d 100644 --- a/build/Containerfile.debian12 +++ b/build/Containerfile.debian12 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt RUN apt update \ && apt dist-upgrade -y \ && apt autoremove --purge -y \ - && apt install -y python3-pip git systemd nodejs tree \ + && apt install -y python3-pip git systemd nodejs tree procps \ && pip install pip --upgrade --break-system-packages \ && pip install -r /tmp/requirements.txt --break-system-packages diff --git a/build/Containerfile.fedora39 b/build/Containerfile.fedora39 index 0d9c1b8..ca27c86 100644 --- a/build/Containerfile.fedora39 +++ b/build/Containerfile.fedora39 @@ -11,9 +11,10 @@ COPY conf/dnf.conf /etc/dnf/dnf.conf COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint -RUN dnf install -y python3-pip python3-devel gcc git systemd nodejs tree \ - && pip install pip --upgrade \ - && pip install -r /tmp/requirements.txt +RUN dnf update -y \ + && dnf install -y python3-pip python3-devel gcc git systemd nodejs tree procps-ng \ + && pip install pip --upgrade \ + && pip install -r /tmp/requirements.txt COPY ansible/ansible-check.yml /tmp/ansible-check.yml