26 lines
542 B
YAML
26 lines
542 B
YAML
name: gdb-static-pr-pipeline
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
build_type: ["build", "build-with-python"]
|
|
architecture: ["x86_64", "arm", "aarch64", "powerpc", "mips", "mipsel"]
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y wget
|
|
|
|
- name: Build
|
|
run: make ${{ matrix.build_type }}-${{ matrix.architecture }} -j$((`nproc`+1))
|