-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (98 loc) · 2.98 KB
/
ci-cli.yml
File metadata and controls
111 lines (98 loc) · 2.98 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
name: CI - CLI
on:
push:
branches: [main]
paths:
- 'tdn-cli/**'
- '.github/workflows/ci-cli.yml'
pull_request:
branches: [main]
paths:
- 'tdn-cli/**'
- '.github/workflows/ci-cli.yml'
defaults:
run:
working-directory: tdn-cli
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
with:
workspaces: './tdn-cli/crates/core -> target'
- run: bun install
- run: bun run build # Build NAPI bindings
- run: bun run check
test:
name: Test - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
with:
workspaces: './tdn-cli/crates/core -> target'
- run: bun install
- run: bun run build
- run: bun run test
build:
name: Build Binary - ${{ matrix.target }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- target: darwin-arm64
runner: macos-latest
- target: darwin-x64
runner: macos-15-intel
- target: linux-x64
runner: ubuntu-latest
- target: linux-arm64
runner: ubuntu-24.04-arm
- target: windows-x64
runner: windows-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
with:
workspaces: './tdn-cli/crates/core -> target'
- name: Install dependencies
run: bun install
- name: Build NAPI bindings
run: bun run build
- name: Build standalone binary (Unix)
if: matrix.target != 'windows-x64'
run: bun build --compile --minify src/index.ts --outfile dist/tdn-${{ matrix.target }}
- name: Build standalone binary (Windows)
if: matrix.target == 'windows-x64'
run: bun build --compile --minify src/index.ts --outfile dist/tdn-${{ matrix.target }}.exe
- name: Smoke test binary (Unix)
if: matrix.target != 'windows-x64'
run: |
./dist/tdn-${{ matrix.target }} --version
./dist/tdn-${{ matrix.target }} --help
- name: Smoke test binary (Windows)
if: matrix.target == 'windows-x64'
run: |
.\dist\tdn-${{ matrix.target }}.exe --version
.\dist\tdn-${{ matrix.target }}.exe --help
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: tdn-${{ matrix.target }}
path: tdn-cli/dist/tdn-${{ matrix.target }}*
if-no-files-found: error