From d77bc98d7d1252971f7ccbf825bbc886ce6d9672 Mon Sep 17 00:00:00 2001 From: kamo-naoyuki Date: Wed, 17 Feb 2021 11:34:50 +0900 Subject: [PATCH] Stop circle ci --- .circleci/config.yml | 225 ------------------------------------------- .mergify.yml | 2 - README.md | 2 - 3 files changed, 229 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 31b4b804f5a..00000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,225 +0,0 @@ -# Python CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-python/ for more details -# -version: 2 -workflows: - version: 2 - test: - jobs: - - test-ubuntu18 - - test-ubuntu20 - # NOTE: The following jobs will be done in Github Action - # - test-centos7 - # - test-debian9 - -jobs: - test-ubuntu18: - docker: - - image: circleci/buildpack-deps:18.04 - environment: - # default gcc version is 7 - ESPNET_PYTHON_VERSION: 3.6 - TH_VERSION: 1.7.1 - CHAINER_VERSION: 6.0.0 - USE_CONDA: true - # To avoid UnicodeEncodeError for python<=3.6 - LC_ALL: en_US.UTF-8 - working_directory: ~/repo - - steps: - - checkout - - run: - name: install dependencies - command: | - sudo apt-get update -qq - # NOTE(kamo): cmake libsndfile1-dev will be download using anacond: - sudo apt-get install -qq -y bc - sudo localedef -f UTF-8 -i en_US en_US - - run: - name: install espnet - command: | - ./ci/install.sh - - run: - name: test shell - command: | - ./ci/test_shell.sh - - run: - name: test python - command: | - ./ci/test_python.sh - - run: - name: install kaldi - command: | - ./ci/install_kaldi.sh - - run: - name: test integration - command: | - ./ci/test_integration.sh - - run: - name: codecov - command: | - . ./tools/activate_python.sh - bash <(curl -s https://codecov.io/bash) - - store_artifacts: - path: egs/mini_an4/asr1/exp - - test-ubuntu20: - docker: - - image: circleci/buildpack-deps:20.04 - environment: - # default gcc version is 9 - ESPNET_PYTHON_VERSION: 3.6 - TH_VERSION: 1.7.1 - CHAINER_VERSION: 6.0.0 - USE_CONDA: true - # To avoid UnicodeEncodeError for python<=3.6 - LC_ALL: en_US.UTF-8 - working_directory: ~/repo - - steps: - - checkout - - run: - name: install dependencies - command: | - sudo apt-get update -qq - # NOTE(kamo): cmake libsndfile1-dev will be download using anacond: - sudo apt-get install -qq -y bc - sudo localedef -f UTF-8 -i en_US en_US - - run: - name: install espnet - command: | - ./ci/install.sh - - run: - name: test shell - command: | - ./ci/test_shell.sh - - run: - name: test python - command: | - ./ci/test_python.sh - - run: - name: install kaldi - command: | - ./ci/install_kaldi.sh - - run: - name: test integration - command: | - ./ci/test_integration.sh - - run: - name: codecov - command: | - . ./tools/activate_python.sh - bash <(curl -s https://codecov.io/bash) - - store_artifacts: - path: egs/mini_an4/asr1/exp - - test-centos7: - docker: - - image: centos:7 - environment: - ESPNET_PYTHON_VERSION: 3.6 - TH_VERSION: 1.7.1 - CHAINER_VERSION: 6.0.0 - USE_CONDA: true - CC: /opt/rh/devtoolset-7/root/usr/bin/gcc - CXX: /opt/rh/devtoolset-7/root/usr/bin/g++ - # To avoid UnicodeEncodeError for python<=3.6 - LC_ALL: en_US.UTF-8 - working_directory: ~/repo - - steps: - - run: - name: install dependencies - command: | - # NOTE(kamo): cmake sndfile will be download using anacond: - yum install -y git centos-release-scl make bzip2 wget which unzip bc patch - yum-config-manager --enable rhel-server-rhscl-7-rpms - yum install -y devtoolset-7-gcc-c++ - localedef -f UTF-8 -i en_US en_US - - checkout - - run: - name: install espnet - command: | - # NOTE(karita) this line exited 1 - # source scl_source enable devtoolset-7 - PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}" - ./ci/install.sh - - run: - name: test shell - command: | - PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}" - ./ci/test_shell.sh - - run: - name: test python - command: | - PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}" - ./ci/test_python.sh - # - run: - # name: install kaldi - # command: | - # # TODO(karita) centos7 featbin binary - # PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}" - # ./ci/install_kaldi.sh - # - run: - # name: test integration - # command: | - # ./ci/test_integration.sh - # - run: - # name: codecov - # command: | - # source ./tools/venv/bin/activate - # bash <(curl -s https://codecov.io/bash) - # - store_artifacts: - # path: egs/mini_an4/asr1/exp - - test-debian9: - docker: - - image: debian:9 - environment: - ESPNET_PYTHON_VERSION: 3.6 - TH_VERSION: 1.7.1 - CHAINER_VERSION: 6.0.0 - USE_CONDA: true - CC: gcc-6 - CXX: g++-6 - # To avoid UnicodeEncodeError for python<=3.6 - LC_ALL: en_US.UTF-8 - working_directory: ~/repo - - steps: - - checkout - - run: - name: install dependencies - command: | - apt-get update -qq - # NOTE(kamo): cmake sndfile will be download using anacond: - apt-get install -qq -y build-essential git g++-6 unzip bzip2 wget curl bc locales make - localedef -f UTF-8 -i en_US en_US - - run: - name: install espnet - command: | - ./ci/install.sh - - run: - name: test shell - command: | - ./ci/test_shell.sh - - run: - name: test python - command: | - ./ci/test_python.sh - - run: - name: install kaldi - command: | - ./ci/install_kaldi.sh - - run: - name: test integration - command: | - ./ci/test_integration.sh - - run: - name: codecov - command: | - source ./tools/venv/bin/activate - bash <(curl -s https://codecov.io/bash) - - store_artifacts: - path: egs/mini_an4/asr1/exp diff --git a/.mergify.yml b/.mergify.yml index eea44807599..84f2809a9aa 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -11,8 +11,6 @@ pull_request_rules: - "status-success=linter_and_test (ubuntu-18.04, 3.7, 1.6.0, 6.0.0, false)" - "status-success=linter_and_test (ubuntu-18.04, 3.7, 1.7.1, 6.0.0, false)" - "status-success=linter_and_test (ubuntu-18.04, 3.8, 1.7.1, 6.0.0, false)" - - "status-success=ci/circleci: test-ubuntu18" - - "status-success=ci/circleci: test-ubuntu20" actions: merge: method: merge diff --git a/README.md b/README.md index 7f0a5854d90..522279ec4d4 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | |ubuntu18/python3.8/pip||||||||[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)| |ubuntu18/python3.7/pip|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)|[![Github Actions](https://github.com/espnet/espnet/workflows/CI/badge.svg)](https://github.com/espnet/espnet/actions)| -|ubuntu18/python3.6/conda||||||||[![CircleCI](https://circleci.com/gh/espnet/espnet.svg?style=svg)](https://circleci.com/gh/espnet/espnet)| -|ubuntu20/python3.6/conda||||||||[![CircleCI](https://circleci.com/gh/espnet/espnet.svg?style=svg)](https://circleci.com/gh/espnet/espnet)| |debian9/python3.6/conda||||||||[![debian9](https://github.com/espnet/espnet/workflows/debian9/badge.svg)](https://github.com/espnet/espnet/actions?query=workflow%3Adebian9)| |centos7/python3.6/conda||||||||[![centos7](https://github.com/espnet/espnet/workflows/centos7/badge.svg)](https://github.com/espnet/espnet/actions?query=workflow%3Acentos7)| |[docs/coverage] python3.8||||||||[![Build Status](https://travis-ci.org/espnet/espnet.svg?branch=master)](https://travis-ci.org/espnet/espnet)|