Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
Zipr Toolchain
Commits
912e1227
Commit
912e1227
authored
6 years ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
change to do ubuntu 16 testing, and nightly cleaning
Former-commit-id:
5dd66a80
parent
c3d03692
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+81
-8
81 additions, 8 deletions
.gitlab-ci.yml
cicd_testing/do-clean.sh
+20
-0
20 additions, 0 deletions
cicd_testing/do-clean.sh
with
101 additions
and
8 deletions
.gitlab-ci.yml
+
81
−
8
View file @
912e1227
...
...
@@ -4,32 +4,105 @@ before_script:
after_script
:
-
"
source
~gitlab-runner/cicd_support/cicd_support.shinc"
do-build
:
stage
:
build
stages
:
-
clean
-
build
-
test
#
# Cleaning
#
.do-nightly-clean
:
&do-nightly-clean
stage
:
clean
script
:
-
./cicd_testing/do-clean.sh
do-nightly-clean-ubuntu18
:
<<
:
*do-nightly-clean
tags
:
-
ubuntu18
do-nightly-clean-ubuntu16
:
<<
:
*do-nightly-clean
tags
:
-
ubuntu16
#
# Building
#
.do-build
:
&do-build
stage
:
build
script
:
-
./cicd_testing/do-build.sh
xform-ls
:
stage
:
test
do-build-ubuntu18
:
<<
:
*do-build
tags
:
-
ubuntu18
do-build-ubuntu16
:
<<
:
*do-build
tags
:
-
ubuntu16
#
# $PSZ ls
#
.xform-ls
:
&xform-ls
stage
:
test
script
:
-
./cicd_testing/xform-ls.sh
basic-pgms-rida
:
stage
:
test
xform-ls-ubuntu18
:
<<
:
*xform-ls
tags
:
-
ubuntu18
xform-ls-ubuntu16
:
<<
:
*xform-ls
tags
:
-
ubuntu16
#
# test_cmds.sh rida
#
.basic-pgms-rida
:
&basic-pgms-rida
stage
:
test
script
:
-
./cicd_testing/basic-pgms-rida.sh
basic-pgms-rida-
p1
:
stage
:
test
basic-pgms-rida-
ubuntu18
:
<<
:
*basic-pgms-rida
tags
:
-
ubuntu18
basic-pgms-rida-ubuntu16
:
<<
:
*basic-pgms-rida
tags
:
-
ubuntu16
#
# test_cmds.sh rida-p1
#
.basic-pgms-rida-p1
:
&basic-pgms-rida-p1
stage
:
test
script
:
-
./cicd_testing/basic-pgms-rida-p1.sh
basic-pgms-rida-p1-ubuntu18
:
<<
:
*basic-pgms-rida-p1
tags
:
-
ubuntu18
basic-pgms-rida-p1-ubuntu16
:
<<
:
*basic-pgms-rida-p1
tags
:
-
ubuntu16
This diff is collapsed.
Click to expand it.
cicd_testing/do-clean.sh
0 → 100755
+
20
−
0
View file @
912e1227
#!/bin/bash
set
-e
set
-x
main
()
{
if
[[
$CICD_NIGHTLY
==
1
]]
;
then
# gather info for debugging later, probably not necessary
pwd
hostname
whoami
env
|grep CICD
rm
-rf
/tmp/peasoup_test
fi
}
main
"
$@
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment