Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 127 additions & 0 deletions .github/workflows/ci-build-release-napi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
name: Build release napi
on:
workflow_dispatch:
push:
tags:
- '*'
env:
FORCE_COLOR: 1
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
macos-napi:
name: Build NAPI macos - Node ${{matrix.nodejs}} - ${{matrix.arch}}
runs-on: macos-latest
timeout-minutes: 3000

strategy:
fail-fast: false
matrix:
arch:
- x86_64
# - arm64
nodejs:
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
cache: 'npm'

- name: Cache Dependencies
id: cache-dependencies
uses: actions/cache@v3
with:
path: pkg/mac/build
key: ${{ runner.os }}-${{ matrix.arch }}-mac-${{ hashFiles('pkg/mac/build-cpp-deps-lib.sh') }}

- name: Build CPP dependencies lib
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
export ARCH=${{ matrix.arch }}
pkg/mac/build-cpp-deps-lib.sh

- name: Build CPP lib
if: steps.cache-pulsar.outputs.cache-hit != 'true'
run: |
export ARCH=${{ matrix.arch }}
pkg/mac/build-cpp-lib.sh

- name: Build Node binaries lib
run: |
npm install --ignore-scripts
npx node-pre-gyp configure --target_arch=${{ matrix.arch }}
npx node-pre-gyp build --target_arch=${{ matrix.arch }}

- name: Test loading Node binaries lib
run: |
node pkg/load_test.js

- name: Package Node binaries lib
run: |
npx node-pre-gyp package --target_arch=${{ matrix.arch }}

- name: Upload artifacts
uses: actions/upload-artifact@v3
if: matrix.nodejs == 16
with:
name: macos-${{matrix.nodejs}}-${{matrix.arch}}
path: build/stage/*/*.tar.gz

linux-napi:
name: Build NAPI ${{matrix.image}} - Node ${{matrix.nodejs}} - ${{matrix.cpu.platform}}
runs-on: ubuntu-22.04
timeout-minutes: 3000

strategy:
fail-fast: false
matrix:
image:
- 'linux_glibc'
- 'linux_musl'
nodejs:
- 16
- 18
cpu:
- {arch: 'x86_64', platform: 'x86_64'}
- {arch: 'aarch64', platform: 'arm64'}

steps:
- name: checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build Linux Docker image
uses: docker/build-push-action@v3
with:
context: ./pkg/${{matrix.image}}
load: true
tags: build:latest
platforms: linux/${{matrix.cpu.arch}}
build-args: |
PLATFORM=${{matrix.cpu.platform}}
ARCH=${{matrix.cpu.arch}}
NODE_VERSION=${{matrix.nodejs}}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and Test NAPI file
run: |
docker run -i -v $PWD:/pulsar-client-node build:latest \
/pulsar-client-node/pkg/build-napi-inside-docker.sh

- name: Upload artifacts
uses: actions/upload-artifact@v3
if: matrix.nodejs == 16
with:
name: ${{matrix.image}}-${{matrix.nodejs}}-${{matrix.cpu.platform}}
path: build/stage/*/*.tar.gz
147 changes: 147 additions & 0 deletions .github/workflows/ci-pr-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: PR validation
on:
pull_request:
branches: ['master']

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-22.04
timeout-minutes: 120

steps:
- name: checkout
uses: actions/checkout@v3

- name: Run Test
run: |
./tests/run-unit-tests.sh

macos-napi:
name: Build NAPI macos - Node ${{matrix.nodejs}} - ${{matrix.arch}}
runs-on: macos-latest
timeout-minutes: 3000

strategy:
fail-fast: false
matrix:
arch:
- x86_64
nodejs:
- 16
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
cache: 'npm'

- name: Cache Dependencies
id: cache-dependencies
uses: actions/cache@v3
with:
path: pkg/mac/build
key: ${{ runner.os }}-${{ matrix.arch }}-mac-${{ hashFiles('pkg/mac/build-cpp-deps-lib.sh') }}

- name: Add env vars
shell: bash
run: |
if [ "${{ matrix.target }}" = "x86_64" ]; then
echo "TARGET=x64" >> $GITHUB_ENV
else
echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV
fi

- name: Build CPP dependencies lib
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
export ARCH=${{ matrix.arch }}
pkg/mac/build-cpp-deps-lib.sh

- name: Build CPP lib
if: steps.cache-pulsar.outputs.cache-hit != 'true'
run: |
export ARCH=${{ matrix.arch }}
pkg/mac/build-cpp-lib.sh

- name: Build Node binaries lib
run: |
npm install --ignore-scripts
npx node-pre-gyp configure --target_arch=${{ env.TARGET }}
npx node-pre-gyp build --target_arch=${{ env.TARGET }}

- name: Test loading Node binaries lib
run: |
node pkg/load_test.js

- name: Package Node binaries lib
run: |
npx node-pre-gyp package --target_arch=${{ env.TARGET }}

linux-napi:
name: Build NAPI ${{matrix.image}} - Node ${{matrix.nodejs}} - ${{matrix.cpu.platform}}
runs-on: ubuntu-22.04
timeout-minutes: 3000

strategy:
fail-fast: false
matrix:
image:
- 'linux_glibc'
- 'linux_musl'
nodejs:
- 16
cpu:
- {arch: 'x86_64', platform: 'x86_64'}

steps:
- name: checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build Linux Docker image
uses: docker/build-push-action@v3
with:
context: ./pkg/${{matrix.image}}
load: true
tags: build:latest
platforms: linux/${{matrix.cpu.arch}}
build-args: |
PLATFORM=${{matrix.cpu.platform}}
ARCH=${{matrix.cpu.arch}}
NODE_VERSION=${{matrix.nodejs}}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and Test NAPI file
run: |
docker run -i -v $PWD:/pulsar-client-node build:latest \
/pulsar-client-node/pkg/build-napi-inside-docker.sh
42 changes: 24 additions & 18 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,9 @@
'conditions': [
['OS=="win"', {
'variables': {
'pulsar_cpp_dir%': '<!(echo %PULSAR_CPP_DIR%)',
'os_arch%': '<!(echo %OS_ARCH%)',
}
}],
['OS=="mac"', {
'variables': {
'pulsar_cpp_dir': '<!(echo $PULSAR_CPP_DIR)'
}
}]
],
"targets": [
{
Expand Down Expand Up @@ -60,17 +54,19 @@
['OS=="mac"', {
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'CLANG_CXX_LIBRARY': 'libc++'
'GCC_ENABLE_CPP_RTTI': 'YES',
'MACOSX_DEPLOYMENT_TARGET': '11.0',
'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11',
'OTHER_CFLAGS': [
"-fPIC",
]
},
"include_dirs": [
"<(pulsar_cpp_dir)/include",
],
"libraries": [
"<(pulsar_cpp_dir)/lib/libpulsar.dylib"
],
"dependencies": [
"<!@(node -p \"require('node-addon-api').gyp\")"
],
"include_dirs": [
"pkg/mac/build-pulsar/install/include"
],
}],
['OS=="win"', {
"defines": [
Expand Down Expand Up @@ -106,16 +102,26 @@
]
}
]
}],
['OS!="mac" and OS!="win"', {
"libraries": [
"-lpulsar",
],
}, { # 'OS!="win"'
"dependencies": [
"<!@(node -p \"require('node-addon-api').gyp\")"
],
"libraries": [
"../pkg/lib/libpulsarwithdeps.a"
],
}]
]
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)"
}
]
}
]
}
17 changes: 5 additions & 12 deletions .github/workflows/nodejs.yml → build-support/dep-version.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
Expand All @@ -16,16 +17,8 @@
# specific language governing permissions and limitations
# under the License.
#
name: Node.js
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Node.js module directory
uses: actions/checkout@v2

- name: Test
run: |
./docker-tests.sh
import yaml, sys

deps = yaml.safe_load(open("dependencies.yaml"))
print(deps[sys.argv[1]])
Loading