Skip to content

cuda - save cuda dir and use with rust compilation #10548

cuda - save cuda dir and use with rust compilation

cuda - save cuda dir and use with rust compilation #10548

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/*.h && \
git diff origin/main --exit-code include/ceed/*.h; 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