Skip to content

Commit

Permalink
Merge branch 'master' into clean_up
Browse files Browse the repository at this point in the history
  • Loading branch information
kan-bayashi committed Jul 25, 2023
2 parents 3db09f1 + 47f989a commit 05c5bc0
Show file tree
Hide file tree
Showing 99 changed files with 2,586 additions and 1,112 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. -->
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.

121 changes: 0 additions & 121 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,7 +9,7 @@ on:
- master

jobs:
test_centos7:
unit_test_espnet1_and_espnet2_on_centos7:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
container:
Expand Down Expand Up @@ -51,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,7 +9,7 @@ on:
- master

jobs:
test_debian11:
unit_test_espnet1_and_espnet2_on_debian11:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
container:
Expand Down Expand Up @@ -39,14 +39,10 @@ jobs:
- 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,7 +9,7 @@ on:
- master

jobs:
test_macos:
check_installable_on_macos:
runs-on: macOS-latest
if: github.event.pull_request.draft == false
strategy:
Expand Down

0 comments on commit 05c5bc0

Please sign in to comment.