🔧 chore(ci): use prepare_repo.sh in both workflows
Replace duplicated inline checkout logic in standards-check.yml and test.yml with a call to .gitea/ci/prepare_repo.sh. Also remove the unused TEST_WORKSPACE env var from test.yml. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
da08212cd6
commit
f3a7259a05
|
|
@ -23,52 +23,13 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 📥 准备仓库
|
- name: 📥 准备仓库
|
||||||
run: |
|
env:
|
||||||
echo "========================================"
|
REPO_NAME: ${{ github.event.repository.name }}
|
||||||
echo "📥 准备仓库到 WORKSPACE_DIR"
|
TOKEN: ${{ secrets.WORKFLOW }}
|
||||||
echo "========================================"
|
TARGET_SHA: ${{ github.sha }}
|
||||||
|
TARGET_REF: ${{ github.ref }}
|
||||||
REPO_NAME="${{ github.event.repository.name }}"
|
TARGET_REF_NAME: ${{ github.ref_name }}
|
||||||
REPO_DIR="${{ env.WORKSPACE_DIR }}/$REPO_NAME"
|
run: bash .gitea/ci/prepare_repo.sh
|
||||||
TOKEN="${{ secrets.WORKFLOW }}"
|
|
||||||
if [ -n "$TOKEN" ]; then
|
|
||||||
REPO_URL="https://oauth2:${TOKEN}@${GITHUB_SERVER_URL#https://}/${{ github.repository }}.git"
|
|
||||||
else
|
|
||||||
REPO_URL="${GITHUB_SERVER_URL}/${{ github.repository }}.git"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "$REPO_DIR" ]; then
|
|
||||||
if [ -d "$REPO_DIR/.git" ]; then
|
|
||||||
cd "$REPO_DIR"
|
|
||||||
git clean -fdx
|
|
||||||
git reset --hard
|
|
||||||
git fetch --all --tags --force --prune --prune-tags
|
|
||||||
else
|
|
||||||
rm -rf "$REPO_DIR"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -d "$REPO_DIR/.git" ]; then
|
|
||||||
mkdir -p "${{ env.WORKSPACE_DIR }}"
|
|
||||||
git clone "$REPO_URL" "$REPO_DIR"
|
|
||||||
cd "$REPO_DIR"
|
|
||||||
fi
|
|
||||||
|
|
||||||
TARGET_SHA="${{ github.sha }}"
|
|
||||||
TARGET_REF="${{ github.ref }}"
|
|
||||||
if git cat-file -e "$TARGET_SHA^{commit}" 2>/dev/null; then
|
|
||||||
git checkout -f "$TARGET_SHA"
|
|
||||||
else
|
|
||||||
if [ -n "$TARGET_REF" ]; then
|
|
||||||
git fetch origin "$TARGET_REF"
|
|
||||||
git checkout -f FETCH_HEAD
|
|
||||||
else
|
|
||||||
git checkout -f "${{ github.ref_name }}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
git config --global --add safe.directory "$REPO_DIR"
|
|
||||||
echo "REPO_DIR=$REPO_DIR" >> $GITHUB_ENV
|
|
||||||
- name: 🧪 Lint commit message / PR title
|
- name: 🧪 Lint commit message / PR title
|
||||||
run: |
|
run: |
|
||||||
cd "$REPO_DIR"
|
cd "$REPO_DIR"
|
||||||
|
|
|
||||||
|
|
@ -17,10 +17,8 @@ concurrency:
|
||||||
# 🔧 配置区域 - 测试参数
|
# 🔧 配置区域 - 测试参数
|
||||||
# ==========================================
|
# ==========================================
|
||||||
env:
|
env:
|
||||||
# ===== 测试环境配置 =====
|
|
||||||
# 测试工作目录
|
# 测试工作目录
|
||||||
WORKSPACE_DIR: "/home/workspace"
|
WORKSPACE_DIR: "/home/workspace"
|
||||||
TEST_WORKSPACE: "/home/workspace/playbook-test"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# ==========================================
|
# ==========================================
|
||||||
|
|
@ -32,52 +30,13 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 📥 准备仓库
|
- name: 📥 准备仓库
|
||||||
run: |
|
env:
|
||||||
echo "========================================"
|
REPO_NAME: ${{ github.event.repository.name }}
|
||||||
echo "📥 准备仓库到 WORKSPACE_DIR"
|
TOKEN: ${{ secrets.WORKFLOW }}
|
||||||
echo "========================================"
|
TARGET_SHA: ${{ github.sha }}
|
||||||
|
TARGET_REF: ${{ github.ref }}
|
||||||
REPO_NAME="${{ github.event.repository.name }}"
|
TARGET_REF_NAME: ${{ github.ref_name }}
|
||||||
REPO_DIR="${{ env.WORKSPACE_DIR }}/$REPO_NAME"
|
run: bash .gitea/ci/prepare_repo.sh
|
||||||
TOKEN="${{ secrets.WORKFLOW }}"
|
|
||||||
if [ -n "$TOKEN" ]; then
|
|
||||||
REPO_URL="https://oauth2:${TOKEN}@${GITHUB_SERVER_URL#https://}/${{ github.repository }}.git"
|
|
||||||
else
|
|
||||||
REPO_URL="${GITHUB_SERVER_URL}/${{ github.repository }}.git"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "$REPO_DIR" ]; then
|
|
||||||
if [ -d "$REPO_DIR/.git" ]; then
|
|
||||||
cd "$REPO_DIR"
|
|
||||||
git clean -fdx
|
|
||||||
git reset --hard
|
|
||||||
git fetch --all --tags --force --prune --prune-tags
|
|
||||||
else
|
|
||||||
rm -rf "$REPO_DIR"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -d "$REPO_DIR/.git" ]; then
|
|
||||||
mkdir -p "${{ env.WORKSPACE_DIR }}"
|
|
||||||
git clone "$REPO_URL" "$REPO_DIR"
|
|
||||||
cd "$REPO_DIR"
|
|
||||||
fi
|
|
||||||
|
|
||||||
TARGET_SHA="${{ github.sha }}"
|
|
||||||
TARGET_REF="${{ github.ref }}"
|
|
||||||
if git cat-file -e "$TARGET_SHA^{commit}" 2>/dev/null; then
|
|
||||||
git checkout -f "$TARGET_SHA"
|
|
||||||
else
|
|
||||||
if [ -n "$TARGET_REF" ]; then
|
|
||||||
git fetch origin "$TARGET_REF"
|
|
||||||
git checkout -f FETCH_HEAD
|
|
||||||
else
|
|
||||||
git checkout -f "${{ github.ref_name }}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
git config --global --add safe.directory "$REPO_DIR"
|
|
||||||
echo "REPO_DIR=$REPO_DIR" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: 🔧 安装测试依赖
|
- name: 🔧 安装测试依赖
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue