#4396 only use exact match with keycode translation #1535
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: | |
branches: | |
- v5.x | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.6", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools Cython | |
sudo apt-get update | |
sudo apt-get install -y libx11-dev libxcomposite-dev libxdamage-dev libxtst-dev libxkbfile-dev libxres-dev | |
sudo apt-get install -y libavutil-dev libavcodec-dev libavformat-dev | |
sudo apt-get install -y libvpx-dev libx264-dev libwebp-dev libturbojpeg-dev | |
sudo apt-get install -y libgtk-3-dev python3-dev python3-cairo-dev python-gi-dev gcc libsystemd-dev libpam0g-dev | |
sudo apt-get install -y liblz4-dev libbrotli-dev libxxhash-dev libqrencode-dev pandoc | |
- name: Build | |
run: | | |
python ./setup.py build |