Skip to content

Commit

Permalink
Merge branch 'master' into fix_mfa_format
Browse files Browse the repository at this point in the history
  • Loading branch information
kan-bayashi committed Jul 24, 2023
2 parents 8e4b6fa + c9cd4de commit 93b136a
Show file tree
Hide file tree
Showing 274 changed files with 7,206 additions and 1,788 deletions.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Question
about: Ask a question
title: ''
labels: Question
assignees: ''

---

**Describe your question**

<!-- If you have a question for your experiments, please specify which task (e.g., ASR, TTS) and the recipe name. This helps us figure out your questions and assign them to appropriate categories. -->
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## What?

<!-- Please write what you changed. -->

## Why?

<!-- Please write why you changed. -->

## See also

<!-- Write additional information if necessary (e.g., referecne, related PRs or Issues). -->
13 changes: 0 additions & 13 deletions .github/workflows/cancel.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/cancel_workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: cancel workflows
on:
workflow_run:
workflows:
- "ci on ubuntu"
- "ci on centos7"
- "ci on debian11"
- "ci on macos"
- "ci on windows"
- "publish doc"
- "publish paper pdf"
# TODO(kan-bayashi): Remove the following items once all PR used new workflow files
- "CI"
- "centos7"
- "debian11"
- "doc"
- "MacOS"
- "Windows"
- "Test import espnet"
- "Check kaldi scripts"
types:
- requested
jobs:
cancel:
runs-on: ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.11.0
with:
workflow_id: ${{ github.event.workflow.id }}
16 changes: 0 additions & 16 deletions .github/workflows/check_kaldi_symlinks.yaml

This file was deleted.

95 changes: 0 additions & 95 deletions .github/workflows/ci.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: centos7
name: ci on centos7

on:
push:
Expand All @@ -9,8 +9,9 @@ on:
- master

jobs:
test_centos7:
unit_test_espnet1_and_espnet2_on_centos7:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
container:
image: centos:7
env:
Expand Down Expand Up @@ -38,6 +39,9 @@ jobs:
yum-config-manager --enable rhel-server-rhscl-7-rpms
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: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@v1.0.9
- name: install espnet
run: |
# NOTE(karita) this line exited 1
Expand All @@ -47,8 +51,10 @@ jobs:
- name: test shell
run: |
PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}"
./ci/test_shell.sh
./ci/test_shell_espnet1.sh
./ci/test_shell_espnet2.sh
- name: test python
run: |
PATH="/opt/rh/devtoolset-7/root/usr/bin:${PATH:-}"
./ci/test_python.sh
./ci/test_python_espnet1.sh
./ci/test_python_espnet2.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: debian11
name: ci on debian11

on:
push:
Expand All @@ -9,8 +9,9 @@ on:
- master

jobs:
test_debian11:
unit_test_espnet1_and_espnet2_on_debian11:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
container:
image: debian:11
env:
Expand All @@ -32,17 +33,16 @@ jobs:
build-essential git unzip bzip2 wget curl bc locales make sox \
libncurses5-dev automake libtool pkg-config
localedef -f UTF-8 -i en_US en_US
- name: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@v1.0.9
- name: install espnet
run: ./ci/install.sh
- name: test shell
run: ./ci/test_shell.sh
run: |
./ci/test_shell_espnet1.sh
./ci/test_shell_espnet2.sh
- name: test python
run: ./ci/test_python.sh
- name: install kaldi
run: ./ci/install_kaldi.sh
- name: test utils
run: ./ci/test_utils.sh
- name: test espnet1 integration
run: ./ci/test_integration_espnet1.sh
- name: test espnet2 integration
run: ./ci/test_integration_espnet2.sh
run: |
./ci/test_python_espnet1.sh
./ci/test_python_espnet2.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS
name: ci on macos

on:
push:
Expand All @@ -9,8 +9,9 @@ on:
- master

jobs:
test_macos:
check_installable_on_macos:
runs-on: macOS-latest
if: github.event.pull_request.draft == false
strategy:
matrix:
python-version: ["3.10"]
Expand All @@ -26,6 +27,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@v1.0.9
- name: install espnet
env:
ESPNET_PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down

0 comments on commit 93b136a

Please sign in to comment.