Update data_tests.yml

This commit is contained in:
khagen 2023-10-05 21:48:29 +02:00 committed by GitHub
parent 533ac31e16
commit 4b882f438c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 37 deletions

View File

@ -11,7 +11,7 @@ jobs:
steps: steps:
- name: Hello world action step - name: Hello world action step
id: hello id: hello
uses: koenhagen/measure-energy-action@v1.0.0 uses: koenhagen/measure-energy-action@v1.1
with: with:
what-to-test: sleep 60 what-to-test: sleep 60
# Use the output from the `hello` step # Use the output from the `hello` step
@ -23,39 +23,39 @@ jobs:
# steps: # steps:
# - run: sar -u 1 240 -o test.txt # - run: sar -u 1 240 -o test.txt
# - run: cat test.txt # - run: cat test.txt
test: # test:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
strategy: # strategy:
fail-fast: false # fail-fast: false
matrix: # matrix:
python-version: ["3.11"] # python-version: ["3.11"]
experimental: [false] # experimental: [false]
steps: # steps:
- uses: actions/checkout@v3 # - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} # - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 # uses: actions/setup-python@v4
with: # with:
python-version: ${{ matrix.python-version }} # python-version: ${{ matrix.python-version }}
architecture: x64 # architecture: x64
cache: 'pip' # cache: 'pip'
cache-dependency-path: 'requirements*' # cache-dependency-path: 'requirements*'
- name: check OS # - name: check OS
run: cat /etc/os-release # run: cat /etc/os-release
- name: set ENV # - name: set ENV
run: export TRAINER_TELEMETRY=0 # run: export TRAINER_TELEMETRY=0
- name: Install dependencies # - name: Install dependencies
run: | # run: |
sudo apt-get update # sudo apt-get update
sudo apt-get install -y --no-install-recommends git make gcc # sudo apt-get install -y --no-install-recommends git make gcc
make system-deps # make system-deps
- name: Install/upgrade Python setup deps # - name: Install/upgrade Python setup deps
run: python3 -m pip install --upgrade pip setuptools wheel # run: python3 -m pip install --upgrade pip setuptools wheel
- name: Replace scarf urls # - name: Replace scarf urls
run: | # run: |
sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json # sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json
- name: Install TTS # - name: Install TTS
run: | # run: |
python3 -m pip install .[all] # python3 -m pip install .[all]
python3 setup.py egg_info # python3 setup.py egg_info
- name: Unit tests # - name: Unit tests
run: make data_tests # run: make data_tests