Author: ivan
Date: Fri Jul  1 18:25:38 2022
New Revision: 1902398

URL: http://svn.apache.org/viewvc?rev=1902398&view=rev
Log:
Add Linux GitHub Actions CI.

Added:
    serf/trunk/.github/
    serf/trunk/.github/workflows/
    serf/trunk/.github/workflows/linux.yml

Added: serf/trunk/.github/workflows/linux.yml
URL: 
http://svn.apache.org/viewvc/serf/trunk/.github/workflows/linux.yml?rev=1902398&view=auto
==============================================================================
--- serf/trunk/.github/workflows/linux.yml (added)
+++ serf/trunk/.github/workflows/linux.yml Fri Jul  1 18:25:38 2022
@@ -0,0 +1,26 @@
+name: Linux
+
+on:
+  push:
+    branches: [ "*" ]
+  pull_request:
+    branches: [ "trunk" ]
+
+  # Allows you to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: Install prerequisites
+        run: sudo apt-get install scons libapr1 libapr1-dev libaprutil1 
libaprutil1-dev zlib1g zlib1g-dev libssl-dev
+  
+      - uses: actions/checkout@v3
+
+      - name: Build
+        run: scons
+
+      - name: Check
+        run: scons check


Reply via email to