diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8d79937f1..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,48 +0,0 @@ -version: 2 -jobs: - build: - working_directory: ~/Akarin-project/Akarin - parallelism: 1 - shell: /bin/bash --login - environment: - CIRCLE_ARTIFACTS: /tmp/circleci-artifacts - CIRCLE_TEST_REPORTS: /tmp/circleci-test-results - docker: - - image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37 - command: /sbin/init - steps: - # Machine Setup - - checkout - # Prepare for artifact - - run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS - - run: - working_directory: ~/Akarin-project/Akarin - command: sudo update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java; sudo update-alternatives --set javac /usr/lib/jvm/java-8-openjdk-amd64/bin/javac; echo -e "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64" >> $BASH_ENV - # Dependencies - # Restore the dependency cache - - restore_cache: - keys: - # This branch if available - - v1-dep-{{ .Branch }}- - # Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly - - v1-dep- - - run: git config --global user.email "circle@circleci.com" - - run: git config --global user.name "CircleCI" - - run: chmod +x scripts/inst.sh - - run: ./scripts/inst.sh --setup --remote - # Save dependency cache - - save_cache: - key: v1-dep-{{ .Branch }}-{{ epoch }} - paths: - - ~/.m2 - # Test - - run: yes|cp -rf ./akarin-*.jar $CIRCLE_ARTIFACTS - # Teardown - # Save test results - - store_test_results: - path: /tmp/circleci-test-results - # Save artifacts - - store_artifacts: - path: /tmp/circleci-artifacts - - store_artifacts: - path: /tmp/circleci-test-results diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a5e5b17a2..000000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: java -jdk: - - oraclejdk8 -install: true -script: - - chmod +x ./scripts/inst.sh - - ./scripts/inst.sh --setup --remote -after_success: - - rm -rf push - - mkdir push - - cp ./target/*.jar ./push/ -deploy: - skip_cleanup: true - provider: releases - api_key: - secure: $Github_token - file: - - ./push/* - file_glob: true - on: - tags: true \ No newline at end of file