Add 32-bit build workflow for github

pull/978/head
Mike Black W9MDB 2022-03-02 07:56:05 -06:00
rodzic 606609f62e
commit 6709a189fa
1 zmienionych plików z 27 dodań i 0 usunięć

27
.github/workflows/c-cpp32.yml vendored 100644
Wyświetl plik

@ -0,0 +1,27 @@
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: bootstrap
run: |
sudo apt install libusb-1.0-0-dev
./bootstrap
- name: configure
run: ./configure CFLAGS=-m32 --without-cxx-binding
- name: make
run: make -j 4
- name: make check
run: make check
- name: make distcheck
run: make distcheck