Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Transfer Tool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Clinbio
SPSP NG
Transfer Tool
Merge requests
!8
Resolve "Add Ubuntu as a platform test in the CI/CD"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Add Ubuntu as a platform test in the CI/CD"
4-add-ubuntu-as-a-platform-test-in-the-ci-cd
into
dev
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Resolve "Add Ubuntu as a platform test in the CI/CD"
Dillenn Terumalai
requested to merge
4-add-ubuntu-as-a-platform-test-in-the-ci-cd
into
dev
Jan 12, 2021
Overview
0
Commits
1
Pipelines
2
Changes
1
Closes
#4 (closed)
Edited
Jan 12, 2021
by
Dillenn Terumalai
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
c86d76c8
1 commit,
Jan 12, 2021
1 file
+
29
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
29
−
4
View file @ c86d76c8
Edit in single-file editor
Open in Web IDE
Show full file
# SPSP Transfer Tool CI/CD
stages
:
-
test
-
deploy
@@ -25,6 +24,8 @@ centos test:
-
logs/spsp*.log
expire_in
:
1 week
when
:
on_failure
only
:
-
merge_requests
debian test
:
image
:
debian:10
@@ -33,7 +34,6 @@ debian test:
-
apt-get install -y netcat
-
apt-get install -y gpg
-
apt-get install -y openssh-client
-
apt-get install -y gpg
-
mkdir -p ~/.ssh
-
echo "$SSH_PRIVATE_KEY" >> ~/.ssh/id_ed25519
-
chmod 600 ~/.ssh/id_ed25519
@@ -43,14 +43,39 @@ debian test:
script
:
-
./spsp init --without-env
-
./spsp test --without-env
inherit
:
default
:
false
artifacts
:
paths
:
-
logs/error.log
-
logs/spsp*.log
expire_in
:
1 week
when
:
on_failure
only
:
-
merge_requests
ubuntu test
:
image
:
ubuntu:20.04
before_script
:
-
apt-get update
-
apt-get install -y netcat
-
apt-get install -y gnupg2
-
apt-get install -y openssh-client
-
mkdir -p ~/.ssh
-
echo "$SSH_PRIVATE_KEY" >> ~/.ssh/id_ed25519
-
chmod 600 ~/.ssh/id_ed25519
-
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
stage
:
test
script
:
-
./spsp init --without-env
-
./spsp test --without-env
artifacts
:
paths
:
-
logs/error.log
-
logs/spsp*.log
expire_in
:
1 week
when
:
on_failure
only
:
-
merge_requests
release
:
stage
:
deploy
Loading