Adding simplified pipelines

tf-m-static:
* Runs cppcheck and checkpatch jobs
* Triggers tf-m-build-and-test
tf-m-cppcheck/checkpatch:
* Run cppcheck and checkpatch accordingly
tf-m-build-config:
* Builds a single configuration of tf-m.
tf-m-build-and-test:
* Can be used to trigger a many configurations of tf-m at once.
* Configuration names generated from a python script
* Parameters then associated from this configuration name and triggers
  downstream builds of tf-m-build-config
tf-m-build-docs:
* Builds reference and user guide
tf-m-lava-submit:
* Submits a single job to LAVA
tf-m-nightly:
* Same as tf-m-build-and-test that triggers nightly.
* Runs more configs

Change-Id: I858bbba03068e29c018a306e79116978af2300db
diff --git a/tf-m-nightly.yaml b/tf-m-nightly.yaml
new file mode 100644
index 0000000..a87ee67
--- /dev/null
+++ b/tf-m-nightly.yaml
@@ -0,0 +1,94 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2020, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+#-------------------------------------------------------------------------------
+
+- job:
+    name: tf-m-nightly
+    description: 'Build that triggers nightly to build many configurations.'
+    project-type: pipeline
+    disabled: false
+    sandbox: true
+    concurrent: true
+    properties:
+      - build-discarder:
+          days-to-keep: 15
+          num-to-keep: 45
+      - authorization:
+          suihkulokki:
+            - job-read
+            - job-extended-read
+            - job-build
+            - job-cancel
+          minosgalanakis:
+            - job-read
+            - job-extended-read
+            - job-build
+            - job-cancel
+          bhcopeland:
+            - job-read
+            - job-extended-read
+            - job-build
+            - job-cancel
+    triggers:
+      - timed: 'H 23 * * *'
+    parameters:
+      - string:
+          name: 'FILTER_GROUP'
+          default: 'full_gnuarm'
+          description: |
+            Filter to a group of configurations as recognised by configs.py
+      - string:
+          name: 'CODE_REPO'
+          default: 'https://review.trustedfirmware.org/trusted-firmware-m'
+      - string:
+          name: 'CI_SCRIPTS_REPO'
+          default: 'https://review.trustedfirmware.org/ci/tf-m-ci-scripts'
+      - string:
+          name: 'GERRIT_REFSPEC'
+          default: 'refs/heads/master'
+          description: |
+            For use when triggering with unmerged Gerrit changes.
+      - string:
+          name: 'GERRIT_BRANCH'
+          default: 'master'
+          description: |
+            For use when triggering with unmerged Gerrit changes.
+      - string:
+          name: 'GERRIT_HOST'
+          description: |
+            For use when triggering with unmerged Gerrit changes.
+      - string:
+          name: 'GERRIT_CHANGE_NUMBER'
+          description: |
+            For use when triggering with unmerged Gerrit changes.
+      - string:
+          name: 'GERRIT_PATCHSET_REVISION'
+          description: |
+            For use when triggering with unmerged Gerrit changes.
+      - string:
+          name: 'MBEDCRYPTO_VERSION'
+          default: 'mbedcrypto-3.0.1'
+      - string:
+          name: 'MBEDCRYPTO_URL'
+          default: 'https://github.com/ARMmbed/mbed-crypto'
+      - string:
+          name: 'CMSIS_VERSION'
+          default: '5.5.0'
+      - string:
+          name: 'LAVA_URL'
+          default: 'https://tf.validation.linaro.org'
+      - string:
+          name: 'CI_SCRIPTS_BRANCH'
+          default: 'master'
+    pipeline-scm:
+      scm:
+        - git:
+            url: '$CI_SCRIPTS_REPO'
+            branches:
+            - '$CI_SCRIPTS_BRANCH'
+            credentials-id: GIT_SSH_KEY
+            wipe-workspace: false
+      script-path: jenkins/ci.jpl