Skip to content

gpu(hip) - fix compilation error in gen at-points diagonal assembly #10443

gpu(hip) - fix compilation error in gen at-points diagonal assembly

gpu(hip) - fix compilation error in gen at-points diagonal assembly #10443

Workflow file for this run

name: Release Notes
on:
push:
branches-ignore:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- name: Environment setup
uses: actions/checkout@v5
- name: Check release notes
run: |
git fetch origin main
if git diff origin/main --exit-code include/ceed/*; then
echo "No public interface changes detected"
elif git diff origin/main --exit-code CHANGELOG.md; then
echo "API changes detected, but release notes not updated"
exit 1
fi