diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3d0024da8ed07e2061cad7aae2417a802da1f5d..a13f18d0e8144ebdcb51968b6cd927883db86fc2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,9 +13,9 @@ stages: .build_template: &build_job stage: build before_script: - - ./_ci/bootstrap.sh + - ./ci/bootstrap.sh script: - - ./_ci/build.sh + - ./ci/build.sh cache: &build_caches paths: - miniconda.sh @@ -73,9 +73,9 @@ build_macosx_36: .deploy_template: &deploy_job stage: deploy before_script: - - ./_ci/bootstrap.sh self + - ./ci/bootstrap.sh self script: - - ./_ci/deploy.sh + - ./ci/deploy.sh dependencies: - build_linux_36 - build_macosx_36 diff --git a/_ci/bootstrap.sh b/ci/bootstrap.sh similarity index 99% rename from _ci/bootstrap.sh rename to ci/bootstrap.sh index 86e1b8d5b430648b8bbe2244f1880af1b9b3447b..c72e08b9c5262aa29359dabeaafe653f235c495c 100755 --- a/_ci/bootstrap.sh +++ b/ci/bootstrap.sh @@ -1,4 +1,4 @@ -#!/urs/bin/env bash +#!/usr/bin/env bash # Bootstraps a new conda installation and prepares base environment # if "self" is passed as parameter, then self installs an already built diff --git a/_ci/build.sh b/ci/build.sh similarity index 100% rename from _ci/build.sh rename to ci/build.sh diff --git a/_ci/deploy.sh b/ci/deploy.sh similarity index 100% rename from _ci/deploy.sh rename to ci/deploy.sh diff --git a/_ci/nextbuild.py b/ci/nextbuild.py similarity index 100% rename from _ci/nextbuild.py rename to ci/nextbuild.py