4eda2590f4
CI freebsd_12 job currently fails to build PRs, because of: ``` ld-elf.so.1: /usr/local/bin/bison: Undefined symbol "fread_unlocked@FBSD_1.6" ``` According to FreeBSD issue tracker[1], the proper solution is to upgrade to a supported release, so do that for our CI. [1]: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253452 Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
23 lines
405 B
YAML
23 lines
405 B
YAML
env:
|
|
CIRRUS_CLONE_DEPTH: 1
|
|
|
|
freebsd_13_task:
|
|
freebsd_instance:
|
|
image: freebsd-13-0-release-amd64
|
|
install_script:
|
|
pkg install -y bison gmake pkgconf
|
|
build_script:
|
|
gmake
|
|
test_script:
|
|
gmake check
|
|
|
|
linux_gcc_task:
|
|
container:
|
|
image: gcc:latest
|
|
install_script:
|
|
- apt-get update
|
|
- apt-get -y install bison flex
|
|
build_script:
|
|
- make
|
|
test_script:
|
|
- make check
|