From 2bc2632efd4500f45f099dead7a597009f8e1365 Mon Sep 17 00:00:00 2001 From: Jon Shallow Date: Fri, 21 Jun 2024 16:17:00 +0100 Subject: [PATCH] CI libcoap library version checks Check code not broken for previous libcoap releases. --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5600ba7..dc11395 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,9 @@ env: jobs: build-linux: runs-on: ubuntu-latest + strategy: + matrix: + LIBVER: ["v4.3.4", "develop"] steps: - uses: actions/checkout@v4 - name: setup @@ -28,6 +31,7 @@ jobs: run: | git clone https://github.com/obgm/libcoap.git cd libcoap + git checkout ${{matrix.LIBVER}} ./autogen.sh ./configure --with-openssl --disable-documentation --disable-doxygen --disable-man --disable-tests --disable-examples --disable-license-install make