-
Notifications
You must be signed in to change notification settings - Fork 26
150 lines (145 loc) · 4.4 KB
/
bindings.nodejs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Bindings Node.js
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
paths:
- "sql/**"
- "bindings/nodejs/**"
- ".github/workflows/bindings.nodejs.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: ./.github/actions/setup
with:
cache-key: bindings-nodejs-integration
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Corepack
working-directory: bindings/nodejs
run: corepack enable
- name: Install dependencies
working-directory: bindings/nodejs
run: |
yarn install --immutable
- name: Check format
working-directory: bindings/nodejs
run: yarn run prettier --check .
- name: Build
working-directory: bindings/nodejs
run: yarn build:debug
- name: Check diff
run: git diff --exit-code
- run: make -C tests test-bindings-nodejs
build:
needs: integration
name: build-${{ matrix.target }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- { target: x86_64-unknown-linux-gnu, runner: ubuntu-20.04 }
- { target: aarch64-unknown-linux-gnu, runner: ubuntu-20.04 }
- { target: aarch64-unknown-linux-musl, runner: ubuntu-latest }
- { target: x86_64-unknown-linux-musl, runner: ubuntu-latest }
- { target: x86_64-pc-windows-msvc, runner: windows-2019 }
- { target: x86_64-apple-darwin, runner: macos-13 }
- { target: aarch64-apple-darwin, runner: macos-14 }
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: ./.github/actions/setup
with:
cache-key: bindings-nodejs-${{ matrix.target }}
target: ${{ matrix.target }}
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install ziglang
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.11.0
- name: Corepack
working-directory: bindings/nodejs
run: corepack enable
- name: Install dependencies
working-directory: bindings/nodejs
run: yarn install --immutable
- name: build
working-directory: bindings/nodejs
shell: bash
run: |
export NAPI_TARGET=${{ matrix.target }}
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
yarn build:debug
else
yarn build
fi
- name: strip for macos
if: endsWith(matrix.target, '-apple-darwin')
working-directory: bindings/nodejs
run: |
strip -x *.node
- uses: actions/upload-artifact@v4
with:
name: bindings-nodejs-${{ matrix.target }}
path: bindings/nodejs/*.node
publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
environment:
name: npmjs.com
url: https://www.npmjs.com/package/databend-driver
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Corepack
working-directory: bindings/nodejs
run: corepack enable
- name: Install dependencies
working-directory: bindings/nodejs
run: yarn install --immutable
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: bindings/nodejs/artifacts
pattern: bindings-nodejs-*
merge-multiple: true
- name: Move artifacts
shell: bash
working-directory: bindings/nodejs
run: |
ls -lRh artifacts
yarn run napi artifacts
ls -lRh npm
- name: Add LICENSE
run: cp LICENSE ./bindings/nodejs
- name: Publish
working-directory: bindings/nodejs
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
npm publish --access public --provenance
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}