From 4580d2d42d65f7537e90035537a5e42757855972 Mon Sep 17 00:00:00 2001 From: Roberto Scolaro Date: Wed, 25 Oct 2023 21:18:41 +0200 Subject: [PATCH] feat(ci): add macos and win32 jobs Signed-off-by: Roberto Scolaro --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6dd2c0dcca..ae4eb31d620 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,25 @@ jobs: build_type: Debug cmd: "echo $(build/userspace/falco/falco -c ./falco.yaml --version | grep 'Engine:' | awk '{print $2}') $(echo $(build/userspace/falco/falco -c ./falco.yaml --version | grep 'Schema version:' | awk '{print $3}') $(build/userspace/falco/falco -c ./falco.yaml --list --markdown | grep '^`' | sort) $(build/userspace/falco/falco -c ./falco.yaml --list-events | sort) | sha256sum)" + build-dev-others-amd64: + name: build-dev-others-amd64 + strategy: + fail-fast: false + matrix: + os: [windows-latest, macos-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout Libs + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + with: + fetch-depth: 0 + + - name: Build + run: | + mkdir -p build + cd build && cmake -DUSE_BUNDLED_DEPS=ON -DCMAKE_BUILD_TYPE=Release -DMINIMAL_BUILD=ON .. + cmake --build . --config Release + # checks the falco engine checksum for consistency check-engine-checksum: runs-on: ubuntu-latest