summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-09-20 09:54:10 +1000
committerPauli <pauli@openssl.org>2021-09-21 18:04:52 +1000
commit8f3bcfdfddf8b670439150d9ce6b2aec5df6c036 (patch)
treee38d1c35bbdf32da65acc67de07b293ef648c99c /.github
parent56b8f434c7da35b4de16603faad4170eb1d80710 (diff)
ci: add copyright header to CI scripts
There is quite a bit of creative effort in these and even more trouble- shooting effort. I.e. they are non-trivial from a copyright perspective. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16628) (cherry picked from commit 08d8c2d87ec782e95c28ff795e096c2f6f590d63)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
-rw-r--r--.github/workflows/compiler-zoo.yml7
-rw-r--r--.github/workflows/coveralls.yml7
-rw-r--r--.github/workflows/cross-compiles.yml7
-rw-r--r--.github/workflows/fips-checksums.yml7
-rw-r--r--.github/workflows/fips-label.yml7
-rw-r--r--.github/workflows/fuzz-checker.yml7
-rw-r--r--.github/workflows/main.yml7
-rw-r--r--.github/workflows/run-checker-ci.yml7
-rw-r--r--.github/workflows/run-checker-daily.yml7
-rw-r--r--.github/workflows/run-checker-merge.yml7
-rw-r--r--.github/workflows/windows.yml7
12 files changed, 84 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 601ba5f6b1..c7a344c529 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: GitHub CI
on: [pull_request, push]
diff --git a/.github/workflows/compiler-zoo.yml b/.github/workflows/compiler-zoo.yml
index 29a9097343..55d108543f 100644
--- a/.github/workflows/compiler-zoo.yml
+++ b/.github/workflows/compiler-zoo.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Compiler Zoo CI
on: [push]
diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml
index 45e9e8e62e..3392edda4a 100644
--- a/.github/workflows/coveralls.yml
+++ b/.github/workflows/coveralls.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Coverage
#Run once a day
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index 576a9d3b18..ebfc13c626 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Cross Compile
on: [pull_request, push]
diff --git a/.github/workflows/fips-checksums.yml b/.github/workflows/fips-checksums.yml
index d8aea44786..78351981d5 100644
--- a/.github/workflows/fips-checksums.yml
+++ b/.github/workflows/fips-checksums.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: FIPS Checksums
on: [pull_request]
diff --git a/.github/workflows/fips-label.yml b/.github/workflows/fips-label.yml
index eb87f200f5..c241801b9e 100644
--- a/.github/workflows/fips-label.yml
+++ b/.github/workflows/fips-label.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: FIPS Changed Label
on:
workflow_run:
diff --git a/.github/workflows/fuzz-checker.yml b/.github/workflows/fuzz-checker.yml
index 5b784deb10..4d3bf35884 100644
--- a/.github/workflows/fuzz-checker.yml
+++ b/.github/workflows/fuzz-checker.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Fuzz-checker CI
on: [push]
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 81f6203e2a..4ad9c0c1fa 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: CIFuzz
on: [pull_request, push]
jobs:
diff --git a/.github/workflows/run-checker-ci.yml b/.github/workflows/run-checker-ci.yml
index 5a6dd4dc85..1aca0170f8 100644
--- a/.github/workflows/run-checker-ci.yml
+++ b/.github/workflows/run-checker-ci.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
# Jobs run per pull request submission
name: Run-checker CI
on: [pull_request, push]
diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml
index d9374f1cfc..0937d2f57d 100644
--- a/.github/workflows/run-checker-daily.yml
+++ b/.github/workflows/run-checker-daily.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Run-checker daily
# Jobs run daily
diff --git a/.github/workflows/run-checker-merge.yml b/.github/workflows/run-checker-merge.yml
index 4f5efeae51..7795ab1db2 100644
--- a/.github/workflows/run-checker-merge.yml
+++ b/.github/workflows/run-checker-merge.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Run-checker merge
# Jobs run per merge to master
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index ffe6c92403..cb9e84b33d 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -1,3 +1,10 @@
+# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
name: Windows GitHub CI
on: [pull_request, push]