forked from aarnphm/whispercpp
-
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (52 loc) · 1.62 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 6 * * 1/2" # Every other day 6AM UTC
concurrency:
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
LINES: 200
COLUMNS: 200
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaultsrun
defaults:
run:
shell: bash --noprofile --norc -exo pipefail {0}
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
exclude:
# Currently, there is a bug with bazel. Disable for offline investigation.
- python-version: "3.11"
if: "!github.event.repository.fork" # Don't run on fork repository
name: python${{ matrix.python-version }} integration tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # fetch all tags and branches
- name: Setup CI
uses: ./.github/actions/setup-repo
with:
python-version: ${{ matrix.python-version }}
- uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- name: Install development dependencies and bindings
run: |
./tools/bazel run //requirements:pypi.update
python -m pip install -r requirements/pypi.txt
python -m pip install .
- name: Run tests on python${{ matrix.python-version }}
run: ./tools/bazel test //tests/... //examples/...