Skip to content

Commit 9b3e2f2

Browse files
committed
Add copyright check
1 parent af579a4 commit 9b3e2f2

File tree

7 files changed

+53
-24
lines changed

7 files changed

+53
-24
lines changed

.bazelrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
common --registry=https://raw.githubusercontent.com/eclipse-score/bazel_registry/main/
2+
common --registry=https://bcr.bazel.build

.github/workflows/toolchains-qnx.yml

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ jobs:
2727
- name: Run build
2828
run: |
2929
bazel build //...
30+
- name: Run copyright check
31+
run: |
32+
bazel run //:copyright.check

BUILD

+20
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
#
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
13+
load("@score_cr_checker//:cr_checker.bzl", "copyright_checker")
14+
1315
platform(
1416
name = "x86_64_qnx",
1517
constraint_values = [
@@ -18,3 +20,21 @@ platform(
1820
],
1921
visibility = ["//visibility:public"],
2022
)
23+
24+
copyright_checker(
25+
name = "copyright",
26+
srcs = [
27+
".github",
28+
"BUILD",
29+
"MODULE.bazel",
30+
"tests",
31+
"toolchain",
32+
"tools",
33+
] + glob([
34+
"*.bzl",
35+
]),
36+
offset = 24,
37+
template = "@score_cr_checker//resources:templates",
38+
config = "@score_cr_checker//resources:config",
39+
visibility = ["//visibility:public"],
40+
)

MODULE.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ module(
1717
)
1818

1919
bazel_dep(name = "platforms", version = "0.0.11")
20+
bazel_dep(name = "score_cr_checker", version = "0.2.0")

tests/.bazelrc

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
common --registry=https://raw.githubusercontent.com/eclipse-score/bazel_registry/main/
2+
common --registry=https://bcr.bazel.build
3+
14
build:x86_64_qnx --incompatible_strict_action_env
25
build:x86_64_qnx --platforms=@score_toolchains_qnx//:x86_64_qnx
36
build:x86_64_qnx --sandbox_writable_path=/var/tmp

tests/main.c

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
3-
//
4-
// See the NOTICE file(s) distributed with this work for additional
5-
// information regarding copyright ownership.
6-
//
7-
// This program and the accompanying materials are made available under the
8-
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
10-
//
11-
// SPDX-License-Identifier: Apache-2.0
12-
// *******************************************************************************
1+
/********************************************************************************
2+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
3+
*
4+
* See the NOTICE file(s) distributed with this work for additional
5+
* information regarding copyright ownership.
6+
*
7+
* This program and the accompanying materials are made available under the
8+
* terms of the Apache License Version 2.0 which is available at
9+
* https://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* SPDX-License-Identifier: Apache-2.0
12+
********************************************************************************/
1313
#include <stdio.h>
1414

1515
int main() {

tests/main.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
3-
//
4-
// See the NOTICE file(s) distributed with this work for additional
5-
// information regarding copyright ownership.
6-
//
7-
// This program and the accompanying materials are made available under the
8-
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
10-
//
11-
// SPDX-License-Identifier: Apache-2.0
12-
// *******************************************************************************
1+
/********************************************************************************
2+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
3+
*
4+
* See the NOTICE file(s) distributed with this work for additional
5+
* information regarding copyright ownership.
6+
*
7+
* This program and the accompanying materials are made available under the
8+
* terms of the Apache License Version 2.0 which is available at
9+
* https://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* SPDX-License-Identifier: Apache-2.0
12+
********************************************************************************/
1313
#include <iostream>
1414

1515
int main() {

0 commit comments

Comments
 (0)