Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
tilelang
Commits
9a7cda42
Unverified
Commit
9a7cda42
authored
Oct 09, 2025
by
Xuehai Pan
Committed by
GitHub
Oct 09, 2025
Browse files
[CI] auto-cancel in-progress PR CI when new commits are pushed (#956)
parent
07f62104
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
8 deletions
+19
-8
.github/workflows/amd_ci.yml
.github/workflows/amd_ci.yml
+6
-2
.github/workflows/bot.yml
.github/workflows/bot.yml
+2
-2
.github/workflows/ci.yml
.github/workflows/ci.yml
+5
-1
.github/workflows/metal_ci.yml
.github/workflows/metal_ci.yml
+5
-1
.github/workflows/publish_docs.yml
.github/workflows/publish_docs.yml
+0
-1
.github/workflows/reminder.yml
.github/workflows/reminder.yml
+1
-1
No files found.
.github/workflows/amd_ci.yml
View file @
9a7cda42
name
:
CI Test on AMD
on
:
[
pull_request
]
concurrency
:
group
:
"
${{
github.workflow
}}-${{
github.ref
}}"
cancel-in-progress
:
${{ github.event_name == 'pull_request' }}
env
:
PYTHON_VERSION
:
'
3.12'
VENV_DIR
:
tilelang_ci
...
...
@@ -11,7 +15,7 @@ jobs:
runs-on
:
[
self-hosted
,
amd
,
gpu
]
permissions
:
contents
:
write
contents
:
write
steps
:
-
name
:
Checkout repository
...
...
@@ -84,7 +88,7 @@ jobs:
set -e
REQS_HASH=$(sha256sum requirements-rocm.txt | cut -d ' ' -f 1)
MARKER="${{ runner.tool_cache }}/.venv_marker_${{ env.PYTHON_VERSION }}_${REQS_HASH:0:8}"
echo "Installing requirements"
if [[ -f "$MARKER" ]] && [[ -f "${{ runner.tool_cache }}/${{ env.VENV_DIR }}/bin/activate" ]]; then
echo "venv exists and hash matches – reuse it"
...
...
.github/workflows/bot.yml
View file @
9a7cda42
name
:
Bot
on
:
on
:
issue_comment
:
types
:
[
created
]
...
...
@@ -36,7 +36,7 @@ jobs:
-
name
:
Build original version
run
:
|
echo "Check files to be deleted!"
git clean -dxn | grep -v 'tll/' | xargs -I{} echo {}
git clean -dxn | grep -v 'tll/' | xargs -I{} echo {}
git clean -dxn | grep -v 'tll/' | xargs -I{} rm -rf {}
echo "Delete files completed!"
git checkout main
...
...
.github/workflows/ci.yml
View file @
9a7cda42
name
:
CI
on
:
[
pull_request
]
concurrency
:
group
:
"
${{
github.workflow
}}-${{
github.ref
}}"
cancel-in-progress
:
${{ github.event_name == 'pull_request' }}
env
:
PYTHON_VERSION
:
'
3.12'
VENV_DIR
:
tilelang_ci
...
...
@@ -10,7 +14,7 @@ jobs:
runs-on
:
[
self-hosted
,
nvidia
]
permissions
:
contents
:
write
contents
:
write
steps
:
-
name
:
Checkout repository
...
...
.github/workflows/metal_ci.yml
View file @
9a7cda42
name
:
CI Test on Metal
on
:
[
pull_request
]
concurrency
:
group
:
"
${{
github.workflow
}}-${{
github.ref
}}"
cancel-in-progress
:
${{ github.event_name == 'pull_request' }}
env
:
PYTHON_VERSION
:
'
3.12'
VENV_DIR
:
tilelang_ci
...
...
@@ -10,7 +14,7 @@ jobs:
runs-on
:
[
macos-latest
]
permissions
:
contents
:
write
contents
:
write
steps
:
-
name
:
Checkout repository
...
...
.github/workflows/publish_docs.yml
View file @
9a7cda42
...
...
@@ -41,4 +41,3 @@ jobs:
else
echo "No changes detected, skipping commit and push."
fi
.github/workflows/reminder.yml
View file @
9a7cda42
...
...
@@ -20,4 +20,4 @@ jobs:
'🚀'
})
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment