diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-28 01:04:30 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:15 +0100 |
commit | 37164597577f964851d0329110c96740e0035c4c (patch) | |
tree | 0acd984d6673825d484bada4672e97354679f5ef | |
parent | f2b9d3657d13ff36864894ec4c509aee815a9f2f (diff) |
Add FreeBSD 14.0 build to the CI configuration
The distcheck target is not enabled for now, as it would require passing
the CPPFLAGS and LDFLAGS, but we already check it in other builds.
-rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 25b98d4c..bff98d11 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,3 +113,26 @@ jobs: run: make check - name: make distcheck run: make distcheck + freebsd-14-openssl-3: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: FreeBSD VM build + id: test + uses: vmactions/freebsd-vm@v1 + with: + release: "14.0" + usesh: true + prepare: | + set -x + pkg install -y automake fltk + run: | + set -x + pwd + freebsd-version + ./autogen.sh + ./configure CPPFLAGS='-I/usr/local/include' LDFLAGS='-L/usr/local/lib' + cat config.log + make + make check + ldd src/dillo |