Skip to content

Commit 771f3c9

Browse files
committed
add SPDX annotations
1 parent 165e285 commit 771f3c9

295 files changed

Lines changed: 1237 additions & 11 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/gateway-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: Gateway Release
26

37
on:

.github/workflows/kms-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: KMS Release
26

37
on:

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2024-2025 Phala Network <dstack@phala.network>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: Rust checks
26

37
on:

.github/workflows/sdk.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# SPDX-FileCopyrightText: © 2025 Daniel Sharifi <danielsharifi@outlook.com>
2+
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
16
name: SDK tests
27
permissions:
38
contents: read

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# SPDX-FileCopyrightText: © 2024-2025 Phala Network <dstack@phala.network>
2+
# SPDX-FileCopyrightText: © 2025 Created-for-a-purpose <rachitchahar@gmail.com>
3+
# SPDX-FileCopyrightText: © 2025 Daniel Sharifi <danielsharifi@outlook.com>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
17
[workspace.package]
28
version = "0.5.3"
39
authors = ["Kevin Wang <wy721@qq.com>", "Leechael <Leechael@github.com>"]

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2024 Phala Network <dstack@phala.network>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
DOMAIN := local
26
TO := ./certs
37

basefiles/app-compose.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/bash
22

3+
# SPDX-FileCopyrightText: © 2024-2025 Phala Network <dstack@phala.network>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
37
HOST_SHARED_DIR="/dstack/.host-shared"
48
SYS_CONFIG_FILE="$HOST_SHARED_DIR/.sys-config.json"
59
CFG_PCCS_URL=$([ -f "$SYS_CONFIG_FILE" ] && jq -r '.pccs_url//""' "$SYS_CONFIG_FILE" || echo "")

basefiles/dstack-prepare.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/bin/bash
2+
3+
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
27
set -e
38

49
WORK_DIR="/var/volatile/dstack"

basefiles/wg-checker.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
# SPDX-FileCopyrightText: © 2024 Phala Network <dstack@phala.network>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
37
get_conf_endpoint() {
48
grep "Endpoint" /etc/wireguard/wg0.conf | awk "{print \$3}"
59
}

cargo-check-all.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/bin/sh
2+
3+
# SPDX-FileCopyrightText: © 2024 Phala Network <dstack@phala.network>
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
27
find . -name Cargo.toml -exec dirname {} \; | while read dir; do
38
echo "Checking $dir..."
49
(cd "$dir" && cargo check)

0 commit comments

Comments
 (0)