Skip to content

Commit

Permalink
Merge pull request #1 from espnet/master
Browse files Browse the repository at this point in the history
Merge from upstream
  • Loading branch information
earthmanylf authored Feb 16, 2022
2 parents 63f88c0 + a3e1543 commit ee20e18
Show file tree
Hide file tree
Showing 4,005 changed files with 160,739 additions and 60,571 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
224 changes: 0 additions & 224 deletions .circleci/config.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[report]
omit =
tools/*

# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Cancel
on:
workflow_run:
workflows: ["CI", "centos7", "debian9", "doc"]
types:
- requested
jobs:
cancel:
runs-on: ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.9.1
with:
workflow_id: ${{ github.event.workflow.id }}
31 changes: 18 additions & 13 deletions .github/workflows/centos7.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
name: centos7

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
check_skip:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[ci skip]')"
steps:
- run: echo "${{ github.event.head_commit.message }}"
linter_and_test:
test_centos7:
runs-on: ubuntu-latest
container:
image: centos:7
env:
ESPNET_PYTHON_VERSION: 3.6
TH_VERSION: 1.7.0
ESPNET_PYTHON_VERSION: 3.7
# NOTE: 1.9.0 raised libstdc++ version errors in pyworld.
# ImportError: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found
# (required by /__w/espnet/espnet/tools/venv/envs/espnet/lib/python3.6/site-packages/pyworld/pyworld.cpython-36m-x86_64-linux-gnu.so)
# NOTE(kamo): The issue doens't exist for python3.7?
TH_VERSION: 1.10.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++
MAKE: /opt/rh/devtoolset-7/root/usr/bin/make
# To avoid UnicodeEncodeError for python<=3.6
LC_ALL: en_US.UTF-8
needs: check_skip
steps:
- uses: actions/checkout@master
- name: check OS
run: cat /etc/os-release
run: cat /etc/os-release
- name: install dependencies
run: |
# NOTE(kamo): cmake sndfile will be download using anacond:
yum install -y git centos-release-scl make bzip2 wget which unzip bc
yum install -y git centos-release-scl bzip2 wget which unzip bc patch
yum-config-manager --enable rhel-server-rhscl-7-rpms
yum install -y devtoolset-7-gcc-c++
yum install -y devtoolset-7-gcc-c++ devtoolset-7-make sox ncurses-devel libtool automake autoconf
localedef -f UTF-8 -i en_US en_US
- name: install espnet
run: |
Expand Down
Loading

0 comments on commit ee20e18

Please sign in to comment.