-
Notifications
You must be signed in to change notification settings - Fork 11
37 lines (36 loc) · 983 Bytes
/
tests.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
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
name: Build
strategy:
matrix:
tts: [espeak, espeak-ng, speech-dispatcher]
steps:
- name: System dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
autopoint \
doxygen \
libespeak-dev \
libespeak-ng-dev \
libpng-dev \
librsvg2-dev \
libsdl-image1.2-dev \
libsdl-mixer1.2-dev \
libsdl-net1.2-dev \
libsdl-pango-dev \
libspeechd-dev \
libxml2-dev
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
autoreconf -i
# Disable all, enable just the
./configure --without-espeak --without-espeak-ng --without-speech-dispatcher --with-${{ matrix.tts }}
# TODO: wire up src/tests to main build system
make check