Hamlib/.github/workflows/c-cpp32.yml

29 wiersze
523 B
YAML
Czysty Zwykły widok Historia

2022-03-02 13:56:45 +00:00
name: C/C++ CI 32-bit
2022-03-02 13:56:05 +00:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
2022-03-02 14:13:36 +00:00
runs-on: fedora:32
2022-03-02 13:56:05 +00:00
steps:
2024-03-01 16:11:06 +00:00
- uses: actions/checkout@v3
2022-03-02 13:56:05 +00:00
- name: bootstrap
run: |
sudo apt install libusb-1.0-0-dev
2024-04-11 16:27:11 +00:00
sudo apt install libgpiod-dev
2022-03-02 13:56:05 +00:00
./bootstrap
- name: configure
2022-03-02 14:13:36 +00:00
run: ./configure --without-cxx-binding
2022-03-02 13:56:05 +00:00
- name: make
run: make -j 4
- name: make check
run: make check
- name: make distcheck
run: make distcheck