name: debian11 on: push: branches: - master pull_request: branches: - master jobs: test_debian11: runs-on: ubuntu-latest container: image: debian:11 env: ESPNET_PYTHON_VERSION: 3.7 TH_VERSION: 1.13.1 CHAINER_VERSION: 6.0.0 USE_CONDA: true # To avoid UnicodeEncodeError for python<=3.6 LC_ALL: en_US.UTF-8 steps: - uses: actions/checkout@master - name: check OS run: cat /etc/os-release - name: install dependencies run: | apt-get update -qq # NOTE(kamo): cmake sndfile will be download using anacond: apt-get install -qq -y \ 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: install espnet run: ./ci/install.sh - name: test shell run: ./ci/test_shell.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