forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (73 loc) · 2 KB
/
NodeJS.yml
File metadata and controls
97 lines (73 loc) · 2 KB
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
name: NodeJS
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}
cancel-in-progress: true
defaults:
run:
shell: bash
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
AWS_ACCESS_KEY_ID: AKIAVBLKPL2ZW2T7TYFQ
AWS_SECRET_ACCESS_KEY: ${{ secrets.NODE_PRE_GYP_SECRETACCESSKEY }}
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
jobs:
linux-nodejs:
name: node.js Linux
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup
run: ./scripts/node_version.sh upload
- name: Node 10
run: ./scripts/node_build.sh 10
- name: Node 12
run: ./scripts/node_build.sh 12
- name: Node 14
run: ./scripts/node_build.sh 14
- name: Node 15
run: ./scripts/node_build.sh 15
- name: Node 17
run: ./scripts/node_build.sh 17
osx-nodejs:
name: node.js OSX
runs-on: macos-latest
needs: linux-nodejs
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup
run: ./scripts/node_version.sh
- name: Node 10
run: ./scripts/node_build.sh 10
- name: Node 12
run: ./scripts/node_build.sh 12
- name: Node 14
run: ./scripts/node_build.sh 14
- name: Node 15
run: ./scripts/node_build.sh 15
- name: Node 17
run: ./scripts/node_build.sh 17
win-nodejs:
name: node.js Windows
runs-on: windows-latest
needs: linux-nodejs
strategy:
matrix:
node: [ '10', '12', '14', '15' ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Node Version
run: ./scripts/node_version.sh
- name: Node
run: ./scripts/node_build_win.sh