Applied updates #35
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
# Build from source. | |
name: build | |
on: [push, pull_request] | |
permissions: read-all | |
jobs: | |
build_ubuntu: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- architecture: 'x86' | |
compiler: 'clang' | |
configure_options: '' | |
- architecture: 'x64' | |
compiler: 'clang' | |
configure_options: '' | |
- architecture: 'x86' | |
compiler: 'gcc' | |
configure_options: '' | |
- architecture: 'x64' | |
compiler: 'gcc' | |
configure_options: '' | |
- architecture: 'x64' | |
compiler: 'gcc' | |
configure_options: '--with-pthread=no' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get -y install autoconf automake autopoint build-essential git libtool pkg-config | |
- name: Download test data | |
run: | | |
if test -x "synctestdata.sh"; then ./synctestdata.sh; fi | |
- name: Building from source | |
env: | |
CC: ${{ matrix.compiler }} | |
run: | | |
tests/build.sh ${{ matrix.configure_options }} | |
- name: Run tests | |
run: | | |
tests/runtests.sh | |
coverage_ubuntu: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- architecture: 'x86' | |
compiler: 'gcc' | |
configure_options: '' | |
- architecture: 'x64' | |
compiler: 'gcc' | |
configure_options: '' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get -y install autoconf automake autopoint build-essential git libtool pkg-config | |
- name: Download test data | |
run: | | |
if test -x "synctestdata.sh"; then ./synctestdata.sh; fi | |
- name: Building from source | |
env: | |
CC: ${{ matrix.compiler }} | |
run: | | |
tests/build.sh ${{ matrix.configure_options }} --enable-shared=no CFLAGS="--coverage -O0" CPPFLAGS="-DOPTIMIZATION_DISABLED" LDFLAGS="--coverage" | |
- name: Run tests | |
run: | | |
make check CHECK_WITH_STDERR=1 SKIP_TOOLS_END_TO_END_TESTS=1 | |
- name: Generate coverage data | |
run: | | |
for DIRECTORY in `find . -maxdepth 1 -type d`; do \ | |
(cd ${DIRECTORY} && find . -maxdepth 1 -name \*.gcno -type f -exec gcov -pb {} \;) \ | |
done | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
name: linux-${{ matrix.architecture }}-gcc-no-optimization |