Skip to content

Commit e03f7c3

Browse files
committedJan 29, 2024
Add CI/CD script to detect out of date copyrights
Fix DMTF#2535. Signed-off-by: Steven Bellock <sbellock@nvidia.com>
1 parent a1a59c5 commit e03f7c3

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed
 

‎.github/workflows/compliance-checks.yml

+15
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
git diff
4545
exit 1
4646
fi
47+
4748
file-encoding:
4849
name: File Encoding Check
4950
runs-on: ubuntu-latest
@@ -57,3 +58,17 @@ jobs:
5758
if [ $? -ne 0 ]; then
5859
exit 1
5960
fi
61+
62+
copyright-date:
63+
name: Check Copyright Year
64+
runs-on: ubuntu-latest
65+
steps:
66+
- name: Checkout
67+
uses: actions/checkout@v3
68+
- name: Check
69+
run: |
70+
set +e
71+
./script/check_copyright_date.sh
72+
if [ $? -ne 0 ]; then
73+
exit 1
74+
fi

‎script/check_copyright_date.sh

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/bin/bash
2+
3+
# Check if the modified files' copyright dates are current.
4+
5+
set -e
6+
7+
# Change directory to top of repository.
8+
cd `dirname $0`
9+
cd ../
10+
11+
# Get list of changed files.
12+
git fetch origin main
13+
modified_files=$(git diff --name-only --diff-filter=AM origin/main..HEAD)
14+
15+
current_year=$(date +%Y)
16+
exit_code=0
17+
18+
echo
19+
20+
for file in $modified_files
21+
do
22+
# Only examine C files for now.
23+
if [[ $file == "include/"* ]] || [[ $file == "library/"* ]]; then
24+
if [[ $file == *".h" ]] || [[ $file == *".c" ]]; then
25+
# Assume that the copyright is located at the third line of the file.
26+
if [[ $(sed -n '3p' $file) != *$current_year* ]]; then
27+
echo $file needs to be updated with $current_year copyright.
28+
exit_code=1
29+
fi
30+
fi
31+
fi
32+
done
33+
34+
exit $exit_code

0 commit comments

Comments
 (0)