summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAdrien RICCIARDI <RICCIARDI-Adrien@users.noreply.github.com>2021-01-03 23:57:37 +0100
committerGitHub <noreply@github.com>2021-01-04 09:57:37 +1100
commit0426f41d619b56ceb0e9b53d9e0affa6f1ea3afa (patch)
tree9b2c40f2c38ce7e375e9caedc79ed733c9ccf919 /.github
parent7ce9cb7b5313db7d354fbeabb87deaf6d5cd6aa2 (diff)
downloadppp-0426f41d619b56ceb0e9b53d9e0affa6f1ea3afa.tar.gz
Solaris automated CI build. (#215)
* Started Solaris CI test. Retrieved PPP source code and started a Solaris virtual machine. Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr> * Added PPP build step to Solaris CI. Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/solaris.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/solaris.yaml b/.github/workflows/solaris.yaml
new file mode 100644
index 0000000..32ef909
--- /dev/null
+++ b/.github/workflows/solaris.yaml
@@ -0,0 +1,17 @@
+name: Solaris
+on: [push, pull_request]
+
+jobs:
+ solaris:
+ runs-on: macos-latest
+ steps:
+ - name: Checkout PPP sources
+ uses: actions/checkout@v2
+ - name: Build
+ uses: vmactions/solaris-vm@v0.0.1
+ with:
+ run: |
+ pkg update
+ pkg install gcc
+ ./configure
+ make