hamlib/.github/workflows/c-cpp32.yml
Michael Black 2943b84548
Update c-cpp32.yml
Target 32-bit OS
2022-03-02 08:13:36 -06:00

27 lines
485 B
YAML

name: C/C++ CI 32-bit
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: fedora:32
steps:
- uses: actions/checkout@v2
- name: bootstrap
run: |
sudo apt install libusb-1.0-0-dev
./bootstrap
- name: configure
run: ./configure --without-cxx-binding
- name: make
run: make -j 4
- name: make check
run: make check
- name: make distcheck
run: make distcheck