diff mbox series

[v2,1/1] ci: Add github workflow

Message ID 20240709135007.104325-2-lucas.de.marchi@gmail.com (mailing list archive)
State New
Headers show
Series Use github-action for CI | expand

Commit Message

Lucas De Marchi July 9, 2024, 1:50 p.m. UTC
Add a minimal github workflow to test kmod. This can be incremented in
future to test more distros, compilers and libc.

Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
---
 .github/workflows/main.yml | 56 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)
 create mode 100644 .github/workflows/main.yml

Comments

Lucas De Marchi July 12, 2024, 12:55 p.m. UTC | #1
On Tue, Jul 09, 2024 at 08:50:07AM GMT, Lucas De Marchi wrote:
>Add a minimal github workflow to test kmod. This can be incremented in
>future to test more distros, compilers and libc.
>
>Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>

applied,

Lucas De Marchi
diff mbox series

Patch

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..79eff14
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,56 @@ 
+name: Build and Test
+
+on:
+  push:
+    branches: [master, ci-test]
+  pull_request:
+    branches: [master]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+
+      - name: install dependencies
+        run: |
+          sudo apt-get update
+          sudo apt-get install --yes \
+            build-essential \
+            autoconf \
+            automake \
+            gtk-doc-tools \
+            libssl-dev \
+            liblzma-dev \
+            libssl-dev \
+            libtool \
+            libzstd-dev \
+            linux-headers-generic \
+            scdoc \
+            zstd \
+
+      - name: configure
+        run: |
+          mkdir build
+          cd build
+          ../autogen.sh c
+
+      - name: build
+        run: |
+          cd build
+          make -j$(nproc)
+
+      - name: test
+        run: |
+          cd build
+          make -j$(nproc) check
+
+      - name: install
+        run: |
+          cd build
+          DESTDIR=$PWD/inst make install
+
+      - name: distcheck
+        run: |
+          cd build
+          make distcheck