-
Notifications
You must be signed in to change notification settings - Fork 137
44 lines (39 loc) · 1.15 KB
/
oe-alliance-plugins.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
38
39
40
41
42
43
44
name: oe-alliance plugins
on:
push:
branches: [ master ]
pull_request:
branches:
- "*"
jobs:
build:
name: Build oe-alliance plugins
runs-on: ubuntu-24.04
strategy:
matrix:
gcc: [11,13,14]
python: ['3.10','3.11','3.12','3.13']
steps:
- name: Install prerequisites
run: |
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get -q update
sudo apt remove -y libunwind-14-dev
sudo apt-get install -y g++-${{ matrix.gcc }} build-essential autoconf autotools-dev gettext python${{ matrix.python }}-dev libntirpc-dev
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Build plugins, gcc-${{ matrix.gcc }}, python ${{ matrix.python }}
env:
CC: "gcc-${{ matrix.gcc }}"
CXX: "g++-${{ matrix.gcc }}"
run: |
pip3 install six
autoreconf -i
./configure
make
python -m compileall .