-
Notifications
You must be signed in to change notification settings - Fork 1
155 lines (133 loc) · 4.07 KB
/
CI.yml
File metadata and controls
155 lines (133 loc) · 4.07 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
name: CI
on:
# - pull_request
- push
jobs:
build:
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-2019
- ubuntu-22.04
d:
- "ldc-latest"
compiler:
- llvm-20
include:
- os: macos-14 # arm64
d: "ldc-latest"
compiler: "llvm-20"
- os: macos-13 # x86
d: "ldc-latest"
compiler: "llvm-20"
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
# Cache
- name: Cache
id: cache
uses: actions/cache@v4
with:
path: |
~/.dub
~/AppData/Local/dub
~/.pnpm
~/.pnpm-store
D:\.pnpm-store
D:\.pnpm
./.dub
key: "cache-OS:${{ matrix.os }}-D:${{ matrix.d }}-CXX:${{ matrix.compiler }}-${{ hashFiles('./dub.selections.json', './pnpm-lock.yaml','./package.json', './.nvmrc', './dub.sdl')}} }}"
restore-keys: |
"cache-OS:${{ matrix.os }}-D:${{ matrix.d }}-CXX:${{ matrix.compiler }}-"
# Setup compilers and tools
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
compiler: ${{ matrix.compiler }}
cmake: true
ninja: true
- name: Setup D
uses: dlang-community/setup-dlang@v2
with:
compiler: ${{ matrix.d }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Setup Pnpm
uses: pnpm/action-setup@v4
# Build and Test
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build.node
- name: Test
run: pnpm test
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: minijson-${{ runner.os }}-${{ runner.arch }}
path: ./dist
retention-days: 1
Release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: build
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
registry-url: 'https://registry.npmjs.org'
- name: Setup Pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
delete-merged: true
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
name: merged-artifacts
path: dist/
- name: Prepare Dist
run: | #shell
chmod +x ./dist/*/minijson
zip -9 -j ./dist/minijson-windows-x64.zip ./dist/win32-x64/minijson.exe
tar -czf ./dist/minijson-macos-x64.tar.gz -C ./dist/darwin-x64 minijson
tar -czf ./dist/minijson-macos-arm64.tar.gz -C ./dist/darwin-arm64 minijson
tar -czf ./dist/minijson-linux-x64.tar.gz -C ./dist/linux-x64 minijson
ls -l ./dist
- name: Draft the release
uses: meeDamian/github-release@2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
gzip: folders
draft: true
files: >
dist/minijson-windows-x64.zip
dist/minijson-macos-x64.tar.gz
dist/minijson-macos-arm64.tar.gz
dist/minijson-linux-x64.tar.gz
- name: Clean up dist
run: | #shell
rm -rf ./dist/*.tar.gz ./dist/*.zip
ls -l ./dist
test -f ./dist/darwin-arm64/minijson || exit 1
test -f ./dist/darwin-x64/minijson || exit 1
test -f ./dist/linux-x64/minijson || exit 1
test -f ./dist/win32-x64/minijson.exe || exit 1
- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}