Make the build stricter and fixed some of the errors. #4
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: main | |
jobs: | |
build_linux: | |
name: Build Linux | |
container: | |
image: ubuntu:20.04 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
set -e | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update && \ | |
apt-get install -y autoconf gcc g++ git libtool locales make pkg-config | |
- name: Configure Libfpx | |
env: | |
CFLAGS: '-Wall -Wextra -Werror -Wno-error=deprecated-copy -Wno-error=class-memaccess' | |
CXXFLAGS: '-Wall -Wextra -Werror -Wno-error=deprecated-copy -Wno-error=class-memaccess' | |
run: | | |
autoreconf -fiv | |
./configure | |
- name: Build Libfpx | |
run: | | |
set -e | |
make | |
make check | |
make install |