From f918fc9a347dfd5850aa20d7b9cf3afff2b2bab8 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Thu, 13 Feb 2025 19:50:24 +0100 Subject: [PATCH] removed travis yml --- .travis.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 83e3dd1e..00000000 --- a/.travis.yml +++ /dev/null @@ -1,38 +0,0 @@ -language: python - -python: - - 3.6 - -# Build only tagged commits -if: tag IS present - -before_install: - - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - - bash miniconda.sh -b -p $HOME/miniconda - - rm miniconda.sh # clean up here, so no warning is triggered during the final clean-up - - export PATH=$HOME/miniconda/bin:$PATH # if `source $HOME/miniconda/etc/profile.d/conda.sh` instead, anaconda is not found in deploy - - conda config --set always_yes yes - - conda config --set changeps1 no - - conda config --set anaconda_upload no - - conda config --append channels conda-forge - - conda config --append channels paulscherrerinstitute - -install: - - conda update -q conda - - conda install -q python=$TRAVIS_PYTHON_VERSION conda-build conda-verify anaconda-client - - conda info -a - -script: - - conda build .conda-recipe - -deploy: - provider: script - script: anaconda -t $ANACONDA_TOKEN upload $HOME/miniconda/conda-bld/**/slic-*.tar.bz2 - on: - branch: master - tags: true - -notifications: - email: false - -