Skip to content
Snippets Groups Projects
Commit 93727fa2 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

BUG: don't try to build conda recipe for release 7.2 as it is broken

parent 69a04fd1
No related branches found
No related tags found
No related merge requests found
...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment