defaults: &defaults docker: - image: mythril/dev_test_environment:0.0.43 version: 2 jobs: # Basic testing of a new commit to any branch. test: <<: *defaults steps: - checkout: path: /home/mythril # Uncomment, for local testing with circleci command, as it ignores # path param in checkout command, and this symlink compenstates for that. # - run: ln -s /root/project /home/mythril - restore-cache: keys: - tox-env-{{ checksum "/home/mythril/setup.py" }} - run: name: Install tox envs command: tox -vv --notest working_directory: /home/mythril environment: LC_ALL: en_US.ASCII LANG: en_US.ASCII - save_cache: key: tox-env-{{ checksum "/home/mythril/setup.py" }} paths: - .tox/py* - /root/.cache/pip/wheels/ - run: name: Black style check command: | pip3 install --user black python3 -m black --check /home/mythril/ - run: background: true name: Launch of background geth instance command: geth --syncmode full --rpc --shh - run: name: Unit-testing command: tox working_directory: /home/mythril no_output_timeout: 10m environment: LC_ALL: en_US.ASCII LANG: en_US.ASCII MYTHRIL_DIR: '/home/mythril' - store_test_results: path: /home/mythril/.tox/output - store_artifacts: path: /home/mythril/.tox/output - run: name: Ensuring that setup script is functional command: python3 setup.py install working_directory: /home/mythril - run: name: Sonar analysis command: if [ -z "$CIRCLE_PR_NUMBER" ]; then if [ -z "$CIRCLE_TAG" ]; then sonar-scanner -Dsonar.projectKey=$SONAR_PROJECT_KEY -Dsonar.organization=$SONAR_ORGANIZATION -Dsonar.branch.name=$CIRCLE_BRANCH -Dsonar.projectBaseDir=/home/mythril -Dsonar.sources=mythril -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.tests=/home/mythril/tests -Dsonar.login=$SONAR_LOGIN; fi; fi # - run: # name: Integration tests # command: if [ -z "$CIRCLE_PR_NUMBER" ]; then ./run-integration-tests.sh; fi # working_directory: /home - run: name: Call webhook command: | curl -I -X POST -H -d "https://circleci.com/api/v1/project/${ORGANIZATION}/${WEBHOOK_PROJECT}/tree/master?circle-token=${CIRCLE_TOKEN}" | head -n 1 | cut -d$' ' -f2 pypi_release: <<: *defaults steps: - checkout: path: /home/mythril - run: name: Verify Git tag vs. version command: python3 setup.py verify working_directory: /home/mythril - run: name: Build command: python3 setup.py sdist working_directory: /home/mythril - run: name: Deploy command: twine upload dist/* working_directory: /home/mythril # Release of the mainstream (current stable) version as mythril/myth # container. dockerhub_release: docker: - image: docker:stable steps: - checkout - setup_remote_docker - run: name: Building Docker Image command: ./docker_build_and_deploy.sh mythril/myth # Release of the latest development version as mythril/myth-dev container. dockerhub_dev_release: docker: - image: docker:stable steps: - checkout - setup_remote_docker - run: name: Building Docker Image command: ./docker_build_and_deploy.sh mythril/myth-dev workflows: version: 2 build: jobs: - test: filters: tags: only: /.*/ - pypi_release: filters: branches: ignore: /.*/ tags: only: /v[0-9]+(\.[0-9]+)*/ requires: - test - dockerhub_dev_release: filters: branches: only: develop # requires: # - test - dockerhub_release: filters: branches: ignore: /.*/ tags: only: /v[0-9]+(\.[0-9]+)*/ requires: - test