summaryrefslogtreecommitdiffstats
path: root/jjb/scripts/csit
AgeCommit message (Collapse)AuthorFilesLines
2023-04-17feat(csit): Remove obsolete report jobsPeter Mikus3-63/+0
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch> Change-Id: I71a3bd36fb28339bc4a952579b27736833a1e707
2023-03-17feat(csit): Align job namingPeter Mikus2-4/+4
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch> Change-Id: Ifa70b50ae3e82c2fc784294220150b91e768d2fe
2023-02-13feat(csit): Add terraform jobsPeter Mikus2-0/+42
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch> Change-Id: I65839bd6399aaf07be7352f52068fbfcb493e82e
2021-10-01Use $GIT_URL in scripts to avoid https CA cert failure.Dave Wallace2-3/+5
- git clone using https fails due to expired CA certificate, but project repo git clone works using git transfer protocol. Use $GIT_URL for clone command in scripts which use the git transfer protocol to the git mirror (same as git clone of project repo's) instead of https to the public gerrit ip address. Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: I15ef9e79e7e32d1561f6c452d192048f04c55caa
2021-09-16CSIT: cleanup unused scriptspmikus5-181/+0
Signed-off-by: pmikus <pmikus@cisco.com> Change-Id: I121b8fdf94ebbaa65ed999c9f907581ca7690210
2021-08-25Delete jjb/scripts/csit/cpta.shVratko Polak1-89/+0
It is not used since https://gerrit.fd.io/r/c/ci-management/+/33118 Change-Id: I62b167eff32fd27158e2dd7ae6deec2c25d8db47 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
2021-08-17Global: Docs generation in s3pmikus3-122/+29
+ Rework report/docs/trending jobs in CSIT to utilize AWS S3 cloudfront Signed-off-by: pmikus <pmikus@cisco.com> Change-Id: Ica2757ba8dc31792631c8d6b53b332ebf688b15e
2021-08-05Global: Rework archive artifactspmikus3-41/+2
This patch removes archive-artifacts-parameter macro and ARCHVIVE_ARTIFACTS env var from csit and vpp project. All project specific artifacts to be uploaded with the log files SHOULD BE copied to $WORKSPACE/archives. The next step once this is merged will be to remove NEXUS entirely via JCasC. + Remove archive-artifacts from all csit/vpp yaml files. + Add fdio-infra-ship-backup-logs macro + Remove unused jjb/include-raw-deploy-archives.sh + CSIT: - copy job artifacts to $WORKSPACE/archives + HC2VPP - remove CSIT + TLDK: - remove CSIT Signed-off-by: pmikus <pmikus@cisco.com> Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: Iada020cf269714c34f9ce32d764d991827e3b003
2020-12-15Delete remains of DMM jobsVratko Polak1-42/+0
Change-Id: I45efc7227d4efd37e26cae50495306834ac17d0d Signed-off-by: Vratko Polak <vrpolak@cisco.com>
2020-12-01Do not fail on base64 encoded commentsVratko Polak1-1/+2
+ Add job parameters for Sandbox testing. Change-Id: I3f8c088bd49b1926393a6fa9d3327dd6c7533656 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
2020-10-13Clean up vpp jenkins scripts & docker dirDave Wallace15-1/+31
- Remove docker/vpp Dockerfile definitions and colateral files for image now being build by https://gerrit.fd.io/r/c/ci-management/+/28022 - Remove opensuse support which has been elided from the vpp build in https://gerrit.fd.io/r/c/vpp/+/28999 - Remove unused scripts. - Output script name marker for all jjb scripts following LFIT practices. - Remove old/unused output from scripts. - Add logic to use vpp-ext-deps download cache in the executor images to speed up build jobs. - Add copyright notifcations to modified files without an existing copyright. - Make all vpp/docs jobs use '-{stream}-{os}-{executor}' suffix in their names. - Consolidate executor logging into setup_executor_env.sh and call it first for all jobs. Change-Id: I4ffb67ed476659f0127ca8c84f20a305d06149bf Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
2020-03-27Fix csit branch for perf timed jobsJan Gelety1-1/+3
- performance timed jobs in different csit branches need to be independent from other csit branches Change-Id: Iec841864cdab4374094042d27b3d68a30b7427a1 Signed-off-by: Jan Gelety <jgelety@cisco.com>
2020-01-09CSIT: Make script inclusion more readableVratko Polak15-0/+643
Historically, scripts names started with include-raw-csit- prefix. That was not only long and superfluous, but also confusing, as the actual way of including uses "include-raw-escape", which is a command behaving differently than "include-raw", suggested by the previous name. This Change shortens script names to the part that actually says something about the script. + Move scripts to jjb/scripts/csit/. - "Absolute" paths are not used, as ci-man root is not in serarch path. + Put each path on a separate line to avoid long lines. + Update copyright years, add missing copyright notices. Change-Id: Ifcfad5833577d78bf9105f494d5bf6187abc2a68 Signed-off-by: Vratko Polak <vrpolak@cisco.com>