freebsd_autotools #9
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
name: freebsd_autotools | |
on: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
freebsd_autotools: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: FreeBSD-with-autotools | |
uses: cross-platform-actions/[email protected] | |
with: | |
operating_system: freebsd | |
sync_files: true | |
version: '13.2' | |
run: | | |
uname -a | |
freebsd-version | |
echo $SHELL | |
sudo pkg install -y python3 bash automake libtool | |
sudo pkg install -y pkgconf gmake binutils lzlib | |
autoreconf --warnings=all -vif | |
./configure | |
make | |
make check | |