!71 将make test 从CI脚本中移除,恢复到Dockerfile.rootless中,原因是CI脚本的执行环境中缺少开发环境
Some checks failed
DevStar Studio CI Pipeline - dev branch / build-and-push-x86-64-docker-image (push) Failing after 1h2m29s

Merge pull request !71 from 孟宁/dev-for-ci-make-test
This commit is contained in:
孟宁
2025-05-13 11:28:26 +00:00
committed by Gitee
2 changed files with 1 additions and 2 deletions

View File

@@ -41,7 +41,6 @@ jobs:
- name: 🔧 Test Codes and Build an Artifact
run: |
echo "Prepare to build repository code ${{ gitea.repository }}:${{ gitea.ref }}."
make test
make docker
- name: 🚀 Push Artifact to devstar.cn and docker.io Registry
run: |

View File

@@ -35,7 +35,7 @@ ENV GITEA_I_AM_BEING_UNSAFE_RUNNING_AS_ROOT=1
RUN if [ -n "${GITEA_VERSION}" ]; then \
git checkout "${GITEA_VERSION}"; \
fi \
&& make clean-all build \
&& make clean-all test build \
&& echo "-------------------" \
&& echo " BUILD SUCCESS" \
&& echo "-------------------"