Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/amd_ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
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
Expand All @@ -11,7 +15,7 @@ jobs:
runs-on: [self-hosted, amd, gpu]

permissions:
contents: write
contents: write

steps:
- name: Checkout repository
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Bot

on:
on:
issue_comment:
types: [created]

Expand Down Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
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
Expand All @@ -10,7 +14,7 @@ jobs:
runs-on: [self-hosted, nvidia]

permissions:
contents: write
contents: write

steps:
- name: Checkout repository
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/metal_ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
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
Expand All @@ -10,7 +14,7 @@ jobs:
runs-on: [macos-latest]

permissions:
contents: write
contents: write

steps:
- name: Checkout repository
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,3 @@ jobs:
else
echo "No changes detected, skipping commit and push."
fi

2 changes: 1 addition & 1 deletion .github/workflows/reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
'🚀'
})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading