Finnish (FI) translation for RemoteControlCode #534
Workflow file for this run
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: oe-alliance plugins 3.9 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
name: Build oe-alliance plugins | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
gcc: [11] | |
steps: | |
- name: Install prerequisites | |
run: | | |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
sudo apt-get -q update | |
sudo apt-get install automake | |
sudo apt-get install build-essential | |
sudo apt-get install gettext | |
sudo apt-get install g++-${{ matrix.gcc }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Build plugins, gcc-${{ matrix.gcc }}, python 3.9 | |
env: | |
CC: "gcc-${{ matrix.gcc }}" | |
CXX: "g++-${{ matrix.gcc }}" | |
run: | | |
sudo apt-get install python3.9-dev | |
pip3 install six | |
autoreconf -i | |
./configure | |
make | |
python -m compileall . |