Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
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
Julien Osman
otb
Commits
93727fa2
Commit
93727fa2
authored
4 years ago
by
Cédric Traizet
Browse files
Options
Downloads
Patches
Plain Diff
BUG: don't try to build conda recipe for release 7.2 as it is broken
parent
69a04fd1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+36
-36
36 additions, 36 deletions
.gitlab-ci.yml
with
36 additions
and
36 deletions
.gitlab-ci.yml
+
36
−
36
View file @
93727fa2
...
@@ -351,43 +351,43 @@ ubuntu-xdk-report:
...
@@ -351,43 +351,43 @@ ubuntu-xdk-report:
-
job
:
ubuntu-xdk-qa-static-analysis
-
job
:
ubuntu-xdk-qa-static-analysis
artifacts
:
true
artifacts
:
true
#------------------------- Conda packages jobs ---------------------------------
#
#------------------------- Conda packages jobs ---------------------------------
conda-linux-build
:
#
conda-linux-build:
extends
:
.common
#
extends: .common
stage
:
build
#
stage: build
only
:
#
only:
-
nightly
#
- nightly
-
/^release-[0-9]+\.[0-9]+$/@orfeotoolbox/otb
#
- /^release-[0-9]+\.[0-9]+$/@orfeotoolbox/otb
image
:
$BUILD_IMAGE_REGISTRY/otb-conda-build:latest
#
image: $BUILD_IMAGE_REGISTRY/otb-conda-build:latest
allow_failure
:
true
#
allow_failure: true
script
:
#
script:
-
export otb_tag=${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}
#
- export otb_tag=${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}
-
./CI/conda_build.sh
#
- ./CI/conda_build.sh
after_script
:
[]
#
after_script: []
needs
:
#
needs:
-
job
:
fast-build
#
- job: fast-build
artifacts
:
false
#
artifacts: false
artifacts
:
#
artifacts:
when
:
always
#
when: always
expire_in
:
24 hrs
#
expire_in: 24 hrs
paths
:
#
paths:
-
conda-bld/*
#
- conda-bld/*
conda-linux-deploy
:
#
conda-linux-deploy:
extends
:
.general
#
extends: .general
stage
:
deploy
#
stage: deploy
only
:
#
only:
-
/^release-[0-9]+\.[0-9]+$/@orfeotoolbox/otb
#
- /^release-[0-9]+\.[0-9]+$/@orfeotoolbox/otb
image
:
$BUILD_IMAGE_REGISTRY/otb-conda-build:latest
#
image: $BUILD_IMAGE_REGISTRY/otb-conda-build:latest
before_script
:
#
before_script:
# Provision efficiently the local LFS cache before checkout
#
# Provision efficiently the local LFS cache before checkout
-
git lfs fetch origin $CI_COMMIT_SHA
#
- git lfs fetch origin $CI_COMMIT_SHA
-
git checkout -f -q $CI_COMMIT_SHA
#
- git checkout -f -q $CI_COMMIT_SHA
script
:
#
script:
-
./CI/conda_deploy.sh
#
- ./CI/conda_deploy.sh
needs
:
#
needs:
-
job
:
conda-linux-build
#
- job: conda-linux-build
artifacts
:
yes
#
artifacts: yes
#---------------------------- Deploy job ---------------------------------------
#---------------------------- Deploy job ---------------------------------------
deploy
:
deploy
:
...
...
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