Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger-count
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Astrocyte
Workflows
Strand Lab
cellranger-count
Commits
98e548ff
Commit
98e548ff
authored
3 years ago
by
Hololens Test
Browse files
Options
Downloads
Patches
Plain Diff
Test step-dependent nextflow configs.
parent
27dfa945
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+13
-2
13 additions, 2 deletions
.gitlab-ci.yml
workflow/configs/biohpc_docker.config
+8
-0
8 additions, 0 deletions
workflow/configs/biohpc_docker.config
workflow/configs/biohpc_singularity.config
+9
-0
9 additions, 0 deletions
workflow/configs/biohpc_singularity.config
with
30 additions
and
2 deletions
.gitlab-ci.yml
+
13
−
2
View file @
98e548ff
...
@@ -47,13 +47,23 @@ astrocyte_check:
...
@@ -47,13 +47,23 @@ astrocyte_check:
script
:
script
:
-
astrocyte_cli check "$CI_PROJECT_DIR"
-
astrocyte_cli check "$CI_PROJECT_DIR"
nextflow_test
:
nextflow_test
_docker
:
stage
:
test
stage
:
test
script
:
script
:
-
module load nextflow/20.01.0
-
module load nextflow/20.01.0
-
module load singularity/3.5.3
-
module load singularity/3.5.3
-
cd $CI_PROJECT_DIR/workflow
-
cd $CI_PROJECT_DIR/workflow
-
nextflow -C $CI_PROJECT_DIR/workflow/configs/biohpc.config run main.nf -with-trace -with-timeline -resume --verbose
-
nextflow -C $CI_PROJECT_DIR/workflow/configs/biohpc_docker.config run main.nf -with-trace -with-timeline -resume --verbose
nextflow_test_singularity
:
stage
:
test
script
:
-
module load nextflow/20.01.0
-
module load singularity/3.5.3
-
cd $CI_PROJECT_DIR/workflow
-
nextflow -C $CI_PROJECT_DIR/workflow/configs/biohpc_singularity.config run main.nf -with-trace -with-timeline -resume --verbose
# This runs the workflow with test data and does a simple
# This runs the workflow with test data and does a simple
# check for the expected output file
# check for the expected output file
...
@@ -68,6 +78,7 @@ astrocyte_test:
...
@@ -68,6 +78,7 @@ astrocyte_test:
docker_astrocyte_test
:
docker_astrocyte_test
:
stage
:
test_docker
stage
:
test_docker
script
:
script
:
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
echo "Run astrocyte using dockerhub/docker.io registry pulls"
-
echo "Run astrocyte using dockerhub/docker.io registry pulls"
cache_docker_image
:
cache_docker_image
:
...
...
This diff is collapsed.
Click to expand it.
workflow/configs/biohpc_docker.config
0 → 100644
+
8
−
0
View file @
98e548ff
docker
{
enabled
=
true
}
process
{
executor
=
'local'
}
This diff is collapsed.
Click to expand it.
workflow/configs/biohpc_singularity.config
0 → 100644
+
9
−
0
View file @
98e548ff
singularity
{
enabled
=
true
runOptions
=
'--bind /vagrant:/vagrant'
cacheDir
=
"$baseDir/images/singularity"
}
process
{
executor
=
'local'
}
This diff is collapsed.
Click to expand it.
Preview
0%
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