Fix build #513
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
pip3 install setuptools | |
sudo apt-get update | |
sudo apt-get install --yes \ | |
libswresample-dev libavformat-dev libavutil-dev libavcodec-dev \ | |
qtbase5-dev qt5-qmake qtbase5-dev-tools \ | |
libfftw3-dev | |
- name: Build libkeyfinder | |
run: | | |
git clone https://github.com/ibsh/libKeyFinder.git libkeyfinder | |
cd libkeyfinder | |
qmake | |
sudo make install | |
- name: Build keyfiner-py | |
run: sudo python3 setup.py build_ext install |