Fix implicit function declarations with clang #423
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
env: | |
TERM: xterm | |
AM_COLOR_TESTS: always | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Show OS info | |
run: cat /etc/os-release | |
- name: Install dependencies | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get install -y libhamlib-dev libxmlrpc-core-c3-dev libcmocka-dev python3-dev | |
- name: Autoreconf and basic make | |
run: autoreconf -i && ./configure && make -j2 | |
- name: Configure with xmlrpc | |
run: make clean && ./configure --enable-fldigi-xmlrpc && make -j2 | |
- name: Configure with xmlrpc and Python plugin | |
run: make clean && ./configure --enable-fldigi-xmlrpc --enable-python-plugin && make -j2 | |
- name: Run tests | |
run: make check; rc=$?; cat test/run_*.log; exit $rc |