File tree 7 files changed +53
-24
lines changed
7 files changed +53
-24
lines changed Original file line number Diff line number Diff line change
1
+ common --registry=https://raw.githubusercontent.com/eclipse-score/bazel_registry/main/
2
+ common --registry=https://bcr.bazel.build
Original file line number Diff line number Diff line change 27
27
- name : Run build
28
28
run : |
29
29
bazel build //...
30
+ - name : Run copyright check
31
+ run : |
32
+ bazel run //:copyright.check
Original file line number Diff line number Diff line change 10
10
#
11
11
# SPDX-License-Identifier: Apache-2.0
12
12
# *******************************************************************************
13
+ load ("@score_cr_checker//:cr_checker.bzl" , "copyright_checker" )
14
+
13
15
platform (
14
16
name = "x86_64_qnx" ,
15
17
constraint_values = [
@@ -18,3 +20,21 @@ platform(
18
20
],
19
21
visibility = ["//visibility:public" ],
20
22
)
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
+ )
Original file line number Diff line number Diff line change @@ -17,3 +17,4 @@ module(
17
17
)
18
18
19
19
bazel_dep (name = "platforms" , version = "0.0.11" )
20
+ bazel_dep (name = "score_cr_checker" , version = "0.2.0" )
Original file line number Diff line number Diff line change
1
+ common --registry=https://raw.githubusercontent.com/eclipse-score/bazel_registry/main/
2
+ common --registry=https://bcr.bazel.build
3
+
1
4
build:x86_64_qnx --incompatible_strict_action_env
2
5
build:x86_64_qnx --platforms=@score_toolchains_qnx//:x86_64_qnx
3
6
build:x86_64_qnx --sandbox_writable_path=/var/tmp
Original file line number Diff line number Diff line change 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
+ ********************************************************************************/
13
13
#include <stdio.h>
14
14
15
15
int main () {
Original file line number Diff line number Diff line change 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
+ ********************************************************************************/
13
13
#include < iostream>
14
14
15
15
int main () {
You can’t perform that action at this time.
0 commit comments