-
Notifications
You must be signed in to change notification settings - Fork 122
137 lines (111 loc) · 3.38 KB
/
ci.yaml
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
name: CI
on: [push, pull_request]
env:
CI: true
jobs:
build-and-test:
name: Build addon and run tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-2019
steps:
- name: Fetch code
uses: actions/checkout@v4
with:
submodules: true
- name: Get minimal Node.js version from package.json
id: node-version
run: echo "::set-output name=version::$(node -p 'require("./package.json").engines.node.match(/(\d+)\..*$/)[1]')"
- name: Use Node.js ${{ steps.node-version.outputs.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.node-version.outputs.version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build addon
if: runner.os != 'Linux'
run: make build-addon
- name: Build addon
if: runner.os == 'Linux'
run: make build-addon-linux
- name: Run tests for addon
run: make test-tap
- name: Upload prebuilds
uses: actions/upload-artifact@v4
with:
name: addon-${{ runner.os }}
path: prebuilds
package:
name: Build package
needs: build-and-test
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: npm install --ignore-scripts
- name: Download macOS addon
uses: actions/download-artifact@v4
with:
name: addon-macOS
- name: Download Linux addon
uses: actions/download-artifact@v4
with:
name: addon-Linux
- name: Download Windows addon
uses: actions/download-artifact@v4
with:
name: addon-Windows
- name: Move addons to one folder
run: |
mkdir prebuilds
mv darwin-arm64 prebuilds
mv linux-x64 prebuilds
mv win32-x64 prebuilds
- name: Build package
run: make package
- name: Get package version from package.json
id: pkg-version
run: echo "::set-output name=version::$(node -p 'require("./package.json").version')"
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: package
path: secp256k1-${{ steps.pkg-version.outputs.version }}.tgz
lint-cpp:
name: Lint C/C++ code
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/cache@v4
id: cache
with:
path: clang
key: clang-llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04
- name: Download clang-format
if: steps.cache.outputs.cache-hit != 'true'
run: wget -O- -q http://releases.llvm.org/9.0.0/$VER.tar.xz | tar xfJ - $VER/bin/clang-format && mv $VER clang
env:
VER: clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04
- name: Run lint command
run: PATH=$PATH:./clang/bin/ make lint-cpp-ci
lint-js:
name: Lint JS code
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install --ignore-scripts
- name: Run lint command
run: make lint-js