Fixing a problem where the detection of openssl failed where the defa… #400
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: ubuntu-22.04 | |
steps: | |
- name: Checkout PPP sources | |
uses: actions/checkout@v3 | |
- name: Build | |
uses: vmactions/[email protected] | |
with: | |
run: | | |
pkg update | |
pkg install gcc automake autoconf libtool | |
./autogen.sh CFLAGS="-Wno-deprecated-declarations" | |
make | |
make install |