Closed
Description
Expected behavior
Source code files that are part of the documentation should not have the required license header, that would make tutorial and documentation harder to read.
Actual behavior
CI script scripts/soundness.sh
checks for license headers in ALL source files.
There are two possibles solutions :
-
(preferred) add the required license header files to all source code snippet in the doc and tell DocC to ignore the header file when generating the HTML page. (I asked the question to on the DocC slack channel and wait for a response)
-
modify
scripts/soundness.sh
to excludeDocumentation.docc
folders for the license header check.
git diff scripts/soundness.sh
diff --git a/scripts/soundness.sh b/scripts/soundness.sh
index bd321f6..353359d 100755
--- a/scripts/soundness.sh
+++ b/scripts/soundness.sh
@@ -130,6 +130,7 @@ EOF
find . \
\( \! -path '*/.build/*' -a \
\( \! -path '*/.git/*' \) -a \
+ \( \! -path '*/Documentation.docc/*' \) -a \
\( "${matching_files[@]}" \) -a \
\( \! \( "${exceptions[@]}" \) \) \) | while read line; do
if [[ "$(cat "$line" | replace_acceptable_years | head -n $expected_lines | shasum)" != "$expected_sha" ]]; then
Steps to reproduce
- Add a source snippet as a
.swift
file in the documentation - Run
docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.al2.58.yaml run soundness
Result :
[+] Creating 2/0
✔ Network docker_default Created 0.0s
✔ Container docker-runtime-setup-1 Created 0.0s
[+] Running 1/1
✔ Container docker-runtime-setup-1 Started 0.2s
=> Checking for unacceptable language... okay.
=> Checking format... okay.
=> Checking license headers
* swift-or-c... missing headers in file './Sources/AWSLambdaRuntimeCore/Documentation.docc/Resources/code/03-03-05-main.swift'!
--- /dev/fd/63 2023-09-08 16:10:11.789846001 +0000
+++ /tmp/.swift-aws-lambda-soundness_feXc5A 2023-09-08 16:10:10.580846000 +0000
@@ -1,13 +1,13 @@
-import AWSLambdaRuntime
-
-struct Input: Codable {
- let number: Double
-}
-
-struct Number: Codable {
- let result: Double
-}
-
-@main
-struct SquareNumberHandler: SimpleLambdaHandler {
- typealias Event = Input
+//===----------------------------------------------------------------------===//
+//
+// This source file is part of the SwiftAWSLambdaRuntime open source project
+//
+// Copyright (c) YEARS Apple Inc. and the SwiftAWSLambdaRuntime project authors
+// Licensed under Apache License v2.0
+//
+// See LICENSE.txt for license information
+// See CONTRIBUTORS.txt for the list of SwiftAWSLambdaRuntime project authors
+//
+// SPDX-License-Identifier: Apache-2.0
+//
+//===----------------------------------------------------------------------===//
If possible, minimal yet complete reproducer code (or URL to code)
https://github.com/sebsto/swift-aws-lambda-runtime/tree/sebsto/getting-started-doc
What version of this project (swift-aws-lambda-runtime
) are you using?
1.0.0-alpha-0.1
Swift version
n/a
Amazon Linux 2 docker image version
n/a
Metadata
Metadata
Assignees
Labels
No labels