Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ on:
- 'Makefile'
- 'safe_compile.cmake'
- 'version.txt'
- '.github/workflows/ci.yml'
- '.github/workflows/ascend-ci.yml'
- '.github/workflows/integration-tests-ascend.yml'
- '.github/workflows/runner-preparation.yml'
- '.github/workflows/ascend-runner-preparation.yml'
merge_group:
branches: [main, 'release/**', '**-dev']
types: [checks_requested]
Expand All @@ -36,7 +36,7 @@ permissions: read-all
jobs:

runner-preparation:
uses: ./.github/workflows/runner-preparation.yml
uses: ./.github/workflows/ascend-runner-preparation.yml

integration-tests-ascend:
needs: runner-preparation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
release:
types: [published]
pull_request:
paths: [.github/workflows/create_release.yml]
paths: [.github/workflows/ascend-create_release.yml]

jobs:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'docs/**/*.md'
- 'docs/**/*.mdx'
- 'docs/**/_toc.yaml'
- '.github/workflows/documentation.yml'
- '.github/workflows/ascend-documentation.yml'
- '.github/docs-ci/**'
# Manual full scans (checkAll) to surface errors in existing docs
# that incremental PR runs never touch. These never block a PR.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
paths:
- cmake/llvm-hash.txt
- third_party/ascend/patch/llvm_patch_*.patch
- .github/workflows/llvm-build.yml
- .github/workflows/ascend-llvm-build.yml
- .github/workflows/build/almalinux.Dockerfile
pull_request:
paths:
- cmake/llvm-hash.txt
- third_party/ascend/patch/llvm_patch_*.patch
- .github/workflows/llvm-build.yml
- .github/workflows/ascend-llvm-build.yml
- .github/workflows/build/almalinux.Dockerfile
workflow_dispatch:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [release/**]
pull_request:
paths:
- .github/workflows/wheels.yml
- .github/workflows/ascend-wheels.yml
- .github/workflows/build/wheels.Dockerfile
- setup.py
- pyproject.toml
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
LAST_SHA=$(gh api \
"/repos/${{ github.repository }}/actions/workflows/wheels.yml/runs?branch=${{ github.ref_name }}&status=success&per_page=1" \
"/repos/${{ github.repository }}/actions/workflows/ascend-wheels.yml/runs?branch=${{ github.ref_name }}&status=success&per_page=1" \
--jq '.workflow_runs[0].head_sha // empty')
if [ "$LAST_SHA" = "${{ github.sha }}" ]; then
echo "Current commit already has a successful wheel build. Skipping."
Expand Down
Loading