Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
micmelesse committed Jun 20, 2024
1 parent 91db682 commit a7c18ab
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/amd_perf_kernel_nightly_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo '::set-output name=matrix-HIP::[["ubuntu-latest"]]'
fi
Upstream-Tests-AMD:
Nightly-Tests-AMD:
needs: Runner-Preparation-AMD
if: needs.Runner-Preparation-AMD.outputs.matrix-HIP != ''
runs-on: ${{ matrix.runner }}
Expand All @@ -48,6 +48,21 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Ensure the entire history is fetched for rebase
- name: Add upstream remote
run: |
git remote add upstream https://github.com/triton-lang/triton.git
git fetch upstream
- name: Rebase onto upstream/main
run: |
git rebase upstream/main || { echo "Rebase failed"; exit 1; }
- name: Show Git Log
run: |
echo "Git log after rebase:"
git log --oneline --graph --decorate -n 20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Clear cache
run: |
rm -rf ~/.triton
Expand Down

0 comments on commit a7c18ab

Please sign in to comment.