-
Notifications
You must be signed in to change notification settings - Fork 4
164 lines (156 loc) · 4.65 KB
/
CI.yml
File metadata and controls
164 lines (156 loc) · 4.65 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: CI
env:
DEBUG: napi:*
APP_NAME: ruspty
MACOSX_DEPLOYMENT_TARGET: '10.13'
permissions:
contents: read
'on':
push:
branches:
- main
tags-ignore:
- '**'
paths-ignore:
- LICENSE
- '**/*.gitignore'
- .editorconfig
- docs/**
pull_request: null
jobs:
build:
strategy:
fail-fast: false
matrix:
settings:
- host: macos-14-large
target: x86_64-apple-darwin
description: "macOS 14"
- host: macos-latest
target: aarch64-apple-darwin
description: "macOS latest"
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
description: "Ubuntu Container(22.04)"
name: Build ${{ matrix.settings.target }} on (${{ matrix.settings.description }})
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v4
- name: Install container dependencies
if: matrix.settings.host == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y curl build-essential
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
.cargo-cache
target/
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
- name: Install dependencies
run: npm ci
- name: Build
run: |-
set -e &&
npm run build &&
strip -x *.node
shell: bash
- name: Dump GLIBC symbols
if: matrix.settings.host == 'ubuntu-22.04'
run: |
objdump -T *.node | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu > glibc_versions.txt
if [ -s glibc_versions.txt ]; then
MAX_VERSION=$(cat glibc_versions.txt | sort -V | tail -n 1)
echo "Highest GLIBC version: $MAX_VERSION"
if [ "$(echo "$MAX_VERSION 2.35" | awk '{if ($1 > $2) print "1"; else print "0"}')" -eq 1 ]; then
echo "Error: GLIBC version $MAX_VERSION is larger than 2.35"
exit 1
fi
fi
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: bindings-${{ matrix.settings.target }}
path: ${{ env.APP_NAME }}.*.node
if-no-files-found: error
test:
needs: build
strategy:
fail-fast: false
matrix:
settings:
- host: macos-14-large
target: x86_64-apple-darwin
description: "macOS 14"
- host: macos-latest
target: aarch64-apple-darwin
description: "macOS latest"
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
description: "Ubuntu Container(22.04)"
name: Test on ${{ matrix.settings.target }} (${{ matrix.settings.description }})
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v4
- name: Install container dependencies
if: matrix.settings.host == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y curl build-essential cgroup-tools coreutils
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: bindings-${{ matrix.settings.target }}
- name: Test bindings
run: npm run test:ci
publish:
name: Publish
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main'
needs:
- test
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Move artifacts
run: npm run artifacts
- name: Build wrapper
run: npm run build:wrapper
- name: List packages
run: ls -R ./npm
shell: bash
- name: Publish
run: npm publish --access public