Skip to content

Commit 22888a9

Browse files
committed
feat: add sea support
Signed-off-by: Chapman Pendery <cpendery@vt.edu>
1 parent 8dcc69b commit 22888a9

18 files changed

Lines changed: 1733 additions & 496 deletions

File tree

.github/workflows/pkg.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Package
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
build:
10+
strategy:
11+
matrix:
12+
include:
13+
- os: macos-latest
14+
arch: arm64
15+
artifact-name: inshellisense-darwin-arm64
16+
- os: macos-13
17+
arch: x64
18+
artifact-name: inshellisense-darwin-x64
19+
- os: ubuntu-latest
20+
arch: x64
21+
artifact-name: inshellisense-linux-x64
22+
- os: ubuntu-24.04-arm
23+
arch: arm64
24+
artifact-name: inshellisense-linux-arm64
25+
- os: windows-latest
26+
arch: x64
27+
artifact-name: inshellisense-win32-x64
28+
- os: windows-11-arm
29+
arch: arm64
30+
artifact-name: inshellisense-win32-arm64
31+
32+
runs-on: ${{ matrix.os }}
33+
steps:
34+
- uses: actions/checkout@v4
35+
36+
- name: Use Node.js 22.x
37+
uses: actions/setup-node@v3
38+
with:
39+
node-version: 22
40+
41+
- run: npm ci
42+
43+
- run: npm run build
44+
45+
- run: npm run package
46+
47+
- name: Upload binary artifact
48+
uses: actions/upload-artifact@v4
49+
with:
50+
name: ${{ matrix.artifact-name }}
51+
path:
52+
pkg/*.tgz
53+
if-no-files-found: error

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ t*.md
55
tui-traces/
66
.idea/
77
.vscode/
8+
pkg/

0 commit comments

Comments
 (0)