Update
Build toolchain image / Builder (push) Failing after 4m45s

This commit is contained in:
2026-03-16 15:24:33 +03:00
parent 786c64024c
commit 4711aeac39
3 changed files with 16 additions and 17 deletions
+10 -2
View File
@@ -18,7 +18,15 @@ jobs:
- run: dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
- run: docker pull fedora:43
- run: dnf -y install git
- run: git config --global url."https://${ACTIONS_RUNTIME_TOKEN}:x-oauth-basic@codex.r10x.net/".insteadOf "${GITHUB_SERVER_URL}"
- run: >
git config
--global url."https://${ACTIONS_RUNTIME_TOKEN}:x-oauth-basic@codex.r10x.net/".insteadOf
"${GITHUB_SERVER_URL}"
- run: git clone ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} ${PWD}
- run: docker build --progress=plain --tag ${IMAGE_NAME} .
- run: >
docker build
--progress=plain
--tag ${IMAGE_NAME}
--file ci/Dockerfile
.
- run: docker push ${IMAGE_NAME}
+6 -1
View File
@@ -14,5 +14,10 @@ jobs:
steps:
- name: Пунь
uses: https://codex.r10x.net/actions/tools@master
- run: docker build --progress=plain --tag ${IMAGE_NAME} .
- run: >
docker build
--progress=plain
--tag ${IMAGE_NAME}
--file ci/Dockerfile
.
- run: docker push ${IMAGE_NAME}
-14
View File
@@ -1,14 +0,0 @@
FROM fedora:42 AS basic
WORKDIR /workbench
COPY pre.sh requirements.txt docker.sh minio.sh /root/
RUN /root/pre.sh
RUN /root/docker.sh
RUN /root/minio.sh
# Python packages
RUN pip3 install -r /root/requirements.txt