From 36d8551f3867b7630c7c1cacd25c258900081676 Mon Sep 17 00:00:00 2001 From: AdityaKasar Date: Fri, 11 Oct 2024 11:58:38 +0530 Subject: [PATCH] fixup! feat(core): CI pipeline to build and test CPP SDK --- .github/workflows/cxx-build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cxx-build.yml b/.github/workflows/cxx-build.yml index 0ed85c13f..99e03b6b1 100644 --- a/.github/workflows/cxx-build.yml +++ b/.github/workflows/cxx-build.yml @@ -34,6 +34,16 @@ jobs: - name: Install dependencies run: npm ci + # Set file permissions + - name: Set file permissions + run: | + chmod -R 755 ./ + chown -R $(id -u):$(id -g) ./ + + - name: Build Artifacts + run: | + npm run dist + # - name: Install Gcovr # run: | # apt remove --purge gcovr -y