]> git.ozlabs.org Git - ppp.git/blobdiff - .github/workflows/solaris.yaml
Updated Solaris CI action to fix build error on macOS greater than 10.15. (#327)
[ppp.git] / .github / workflows / solaris.yaml
index 32ef9094d55e6fa29e785fde5a71ff2546ae4feb..9ede782fe8928c7bf9f2d5c4263a212588356d83 100644 (file)
@@ -3,15 +3,16 @@ on: [push, pull_request]
 
 jobs:
   solaris:
-    runs-on: macos-latest
+    runs-on: macos-10.15
     steps:
     - name: Checkout PPP sources
       uses: actions/checkout@v2
     - name: Build
-      uses: vmactions/solaris-vm@v0.0.1
+      uses: vmactions/solaris-vm@v0.0.4
       with:
         run: |
           pkg update
-          pkg install gcc
-          ./configure
+          pkg install gcc automake autoconf libtool
+          ./autogen.sh CFLAGS="-Wno-deprecated-declarations"
           make
+          make install