From 3964b14fa4f208e9483a2a5db91b6d0170c03686 Mon Sep 17 00:00:00 2001 From: Miroslav Kovar Date: Fri, 17 Feb 2023 17:58:07 +0100 Subject: [PATCH] Fix CI Signed-off-by: Miroslav Kovar --- .github/workflows/main.yml | 3 ++- ci/libvcx.dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37a728e28c..dc7216be00 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -613,6 +613,7 @@ jobs: brew install openssl brew install zeromq brew install libsodium + brew install pkg-config - name: "Build libvcx.dylib" run: cargo build --release - name: "Publish artifact libvcx.dylib" @@ -709,7 +710,7 @@ jobs: - host: macos-latest target: x86_64-apple-darwin build: | - brew install openssl zmq + brew install openssl zmq pkg-config npm run build:napi strip -x *.node - host: macos-latest diff --git a/ci/libvcx.dockerfile b/ci/libvcx.dockerfile index 17f7492811..bf40e33ab9 100644 --- a/ci/libvcx.dockerfile +++ b/ci/libvcx.dockerfile @@ -30,6 +30,6 @@ RUN cp /usr/share/zoneinfo/UTC /etc/localtime && echo UTC > /etc/timezone ENV TZ=UTC RUN echo 'https://dl-cdn.alpinelinux.org/alpine/v3.17/main' >> /etc/apk/repositories -RUN apk add --no-cache nodejs=18.12.1-r0 +RUN apk add --no-cache nodejs=18.14.1-r0 USER node