Files
FastDeploy/.github/workflows/ci_iluvatar.yml
T
YuBaoku 030820db4c [CI] Optimize CI: refine check-bypass/cancel logic and fix nightly task (#6939)
* [CI] Optimize CI: add check-bypass for workflow skip control

* fix ci_image_build and publish_job

* [CI] Optimize CI: add check-bypass and cancel

* [CI] update to PFCCLab/ci-bypass@v2
2026-03-20 19:34:45 +08:00

28 lines
753 B
YAML

name: ILUVATAR-CI
on:
pull_request:
types: [opened, synchronize]
branches: [develop, release/**]
permissions: read-all
concurrency:
group: ${{ github.event.pull_request.number }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
clone:
name: FD-Clone-Linux-ILUVATAR
uses: ./.github/workflows/_clone_linux.yml
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
iluvatar_test:
name: Run iluvatar Tests
needs: [clone]
uses: ./.github/workflows/_iluvatar_cases.yml
with:
DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/device/paddle-ixuca:3.3.0-20260312
FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}