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 project is archived. Its data is
read-only
.
Show more breadcrumbs
Clinbio
SPSP NG
Transfer Tool
Merge requests
!9
Version 1.7.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Version 1.7.0
dev
into
master
Overview
0
Commits
5
Pipelines
1
Changes
2
Merged
Version 1.7.0
Dillenn Terumalai
requested to merge
dev
into
master
Jan 12, 2021
Overview
0
Commits
5
Pipelines
1
Changes
2
Changelog
[Enhancement] - Added fasta support
[Enhancement] - Added Ubuntu as an additional testing OS
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e0a6dc71
5 commits,
Jan 12, 2021
2 files
+
50
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
.gitlab-ci.yml
+
29
−
4
View file @ e0a6dc71
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