Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
trio-whole-exome
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
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
igmmbioinformatics
trio-whole-exome
Commits
8a631e71
Commit
8a631e71
authored
2 years ago
by
mwham
Browse files
Options
Downloads
Patches
Plain Diff
Trying custom Docker image, exiting properly from stub tests
parent
3def137e
No related branches found
No related tags found
2 merge requests
!10
Merge in master
,
!8
Bin dir, CI build fixes
Pipeline
#15163
passed
2 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
pipeline/var_calling.nf
+1
-1
1 addition, 1 deletion
pipeline/var_calling.nf
tests/Dockerfile
+13
-0
13 additions, 0 deletions
tests/Dockerfile
tests/run_stubs.sh
+1
-0
1 addition, 0 deletions
tests/run_stubs.sh
with
16 additions
and
2 deletions
.gitlab-ci.yml
+
1
−
1
View file @
8a631e71
---
image
:
nextflow/nextflow:22.04.3
image
:
trio-whole-exome:v1
test
:
script
:
...
...
This diff is collapsed.
Click to expand it.
pipeline/var_calling.nf
+
1
−
1
View file @
8a631e71
...
...
@@ -37,7 +37,7 @@ process write_bcbio_csv {
script:
"""
#!/usr/bin/env python
#!/usr/bin/env python
3
import os
target_bed = os.path.realpath('${target_bed}')
...
...
This diff is collapsed.
Click to expand it.
tests/Dockerfile
0 → 100644
+
13
−
0
View file @
8a631e71
# Docker image for continuous integration testing in GitLab CI with
# Docker executor. The image derives from Alma Linux 8.5, and adds
# NextFlow and basic dependencies (Java, Python, Perl, etc.) but not
# bioinformatics tools - these should be mocked up in CI with stubs
FROM
almalinux:8.6
WORKDIR
/opt
RUN
dnf
install
-y
java-11-openjdk python3 perl
>
dnf_install.log 2>&1
RUN
curl
-L
-o
./nextflow https://github.com/nextflow-io/nextflow/releases/download/v22.04.3/nextflow-22.04.3-all
&&
chmod
u+x nextflow
ENV
PATH /opt:$PATH
ENTRYPOINT
/bin/bash
This diff is collapsed.
Click to expand it.
tests/run_stubs.sh
+
1
−
0
View file @
8a631e71
...
...
@@ -33,3 +33,4 @@ then
fi
echo
"Tests finished with exit status
$test_exit_status
"
exit
$test_exit_status
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