Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jppy
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
km3py
jppy
Commits
215101eb
Verified
Commit
215101eb
authored
3 years ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Adapt CI
parent
ef00597d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
Add fallback Jpp sources
Pipeline
#18978
failed
3 years ago
Stage: init
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+0
-7
0 additions, 7 deletions
.gitlab-ci.yml
scripts/get_jpp.sh
+0
-9
0 additions, 9 deletions
scripts/get_jpp.sh
with
0 additions
and
16 deletions
.gitlab-ci.yml
+
0
−
7
View file @
215101eb
...
...
@@ -19,9 +19,6 @@ stages:
source venv/bin/activate
JPP_DIR=jpp pip install .
.dependencies_template
:
&dependencies_template
|
./scripts/get_jpp.sh
.test_template
:
&test_definition
|
source venv/bin/activate
pip install -U pytest
...
...
@@ -51,7 +48,6 @@ build-jpp-master-py35:
stage
:
build
script
:
-
echo "CI_COMMIT_REF_SLUG = $CI_COMMIT_REF_SLUG"
-
*dependencies_template
-
*virtualenv_definition
cache
:
paths
:
...
...
@@ -65,7 +61,6 @@ build-jpp-master-py36:
image
:
docker.km3net.de/base/python:3.6
stage
:
build
script
:
-
*dependencies_template
-
*virtualenv_definition
cache
:
paths
:
...
...
@@ -79,7 +74,6 @@ build-jpp-master-py37:
image
:
docker.km3net.de/base/python:3.7
stage
:
build
script
:
-
*dependencies_template
-
*virtualenv_definition
cache
:
paths
:
...
...
@@ -93,7 +87,6 @@ build-jpp-master-py38:
image
:
docker.km3net.de/base/python:3.8
stage
:
build
script
:
-
*dependencies_template
-
*virtualenv_definition
cache
:
paths
:
...
...
This diff is collapsed.
Click to expand it.
scripts/get_jpp.sh
deleted
100755 → 0
+
0
−
9
View file @
ef00597d
#!/usr/bin/env bash
if
[
!
-d
'jpp'
]
;
then
echo
"Cloning Jpp..."
git clone
--depth
1 https://
$KM3NET_USERNAME
:
$KM3NET_PASSWORD
@git.km3net.de/common/jpp.git
else
echo
"Fetching latest master"
cd
jpp
git pull
fi
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