diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4245f61..e8a0407 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,7 +16,12 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install Ubuntu dependencies + run: | + cd build + chmod +x install-ubuntu.sh + ./install-ubuntu.sh + - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install flake8 diff --git a/build/install-ubuntu.sh b/build/install-ubuntu.sh new file mode 100644 index 0000000..8828922 --- /dev/null +++ b/build/install-ubuntu.sh @@ -0,0 +1,2 @@ +!/bin/bash +sudo apt-get -y install libasound-dev libportaudio2 \ No newline at end of file