Applied updates #1
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 on FreeBSD. | |
name: build_freebsd | |
on: [push] | |
permissions: read-all | |
jobs: | |
build_freebsd: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Building from source | |
id: build_freebsd | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
mem: 4096 | |
# Note that the test scripts require bash | |
prepare: | | |
pkg install -y autoconf automake bash gettext git libtool pkgconf | |
run: | | |
tests/build.sh | |
tests/runtests.sh |