Fix for failure to detect the presence of sockaddr_ll in linux/if_pac… #397
Workflow file for this run
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: Solaris | |
on: [push, pull_request] | |
jobs: | |
solaris: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout PPP sources | |
uses: actions/checkout@v3 | |
- name: Build | |
uses: vmactions/solaris-vm@v0 | |
with: | |
run: | | |
pkg update | |
pkg install gcc automake autoconf libtool | |
./autogen.sh CFLAGS="-Wno-deprecated-declarations" | |
make | |
make install |