Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMPStaticAnalyzer
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
SMPStaticAnalyzer
Commits
8390e68e
Commit
8390e68e
authored
6 years ago
by
Clark Coleman
Browse files
Options
Downloads
Patches
Plain Diff
Start adding CICD directories and files.
parent
8acd3ee3
No related branches found
No related tags found
1 merge request
!17
Stars CICD
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cicd_testing/do-build.sh
+21
-0
21 additions, 0 deletions
cicd_testing/do-build.sh
cicd_testing/do-clean.sh
+20
-0
20 additions, 0 deletions
cicd_testing/do-clean.sh
with
41 additions
and
0 deletions
cicd_testing/do-build.sh
0 → 100755
+
21
−
0
View file @
8390e68e
#!/bin/bash
set
-e
set
-x
# update submodules
git submodule
sync
--recursive
git submodule update
--recursive
--init
# gather info for debugging later, probably not necessary
pwd
hostname
whoami
env
|grep CICD
time
rsync
-a
--exclude
=
'.git'
$CICD_TO_TEST_DIR
/ /tmp/stars_test
cd
/tmp/stars_test
# source set_env_vars
# sudo ./get-peasoup-packages.sh all
# ./build-all.sh
# bash -x ./postgres_setup.sh
This diff is collapsed.
Click to expand it.
cicd_testing/do-clean.sh
0 → 100755
+
20
−
0
View file @
8390e68e
#!/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/stars_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