From 8f888ee552cc20b7b6beb01cdedd4940808562da Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Sun, 6 Mar 2022 21:22:29 -0800 Subject: [PATCH] Remove travis config --- .travis.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 33780f4..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: python -python: - - 3.6 -before_install: - - echo -e "machine github.com\n login $GITHUB_OAUTH_TOKEN" > ~/.netrc -install: - - pip install awscli boto3 requests -branches: - only: - - release -script: - - git clone https://github.com/post-kerbin-mining-corporation/build-deploy.git - - cd build-deploy - - git checkout master - - cd .. - - pytest -s --testpath "GameData/" build-deploy/src/tests/ # run the deploy tests - - python build-deploy/src/package.py --f ".mod_data.yml" # Build package -before_deploy: - - python build-deploy/src/stage.py --f ".mod_data.yml" # Run the staging script -deploy: - - provider: script - script: python build-deploy/src/deploy.py --f ".mod_data.yml" # Deploy package to spacedock, curse, github - skip_cleanup: true - on: - branch: release