This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 656
205 lines (181 loc) · 6.69 KB
/
release_lsp.yml
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: Release LSP
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 2-6'
push:
branches:
- main
paths:
- editors/vscode/package.json
jobs:
check:
name: Check version
runs-on: ubuntu-latest
outputs:
version: ${{ env.version }}
prerelease: ${{ env.prerelease }}
nightly: ${{ env.nightly }}
version_changed: ${{ steps.version.outputs.changed }}
steps:
- uses: actions/checkout@v3
- name: Check nightly status
id: nightly
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
run: echo "nightly=true" >> $GITHUB_ENV
- name: Check version changes
uses: EndBug/version-check@v1
if: env.nightly != 'true'
id: version
with:
diff-search: true
file-name: editors/vscode/package.json
- name: Set version name
run: echo "version=${{ steps.version.outputs.version }}" >> $GITHUB_ENV
- name: Check prerelease status
id: prerelease
if: env.nightly == 'true' || steps.version.outputs.type == 'prerelease' || steps.version.outputs.type == 'prepatch' || steps.version.outputs.type == 'premajor' || steps.version.outputs.type == 'preminor'
working-directory: editors/vscode
run: |
echo "prerelease=true" >> $GITHUB_ENV
echo "version=$(node ./scripts/updateVersionForPrerelease.mjs)" >> $GITHUB_ENV
- name: Check version status
if: steps.version.outputs.changed == 'true'
run: 'echo "Version change found! New version: ${{ steps.version.outputs.version }} (${{ steps.version.outputs.version_type }})"'
build:
strategy:
matrix:
include:
- os: windows-2022
target: x86_64-pc-windows-msvc
code-target: win32-x64
- os: windows-2022
target: aarch64-pc-windows-msvc
code-target: win32-arm64
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
code-target: linux-x64
- os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
code-target: linux-arm64
- os: macos-11
target: x86_64-apple-darwin
code-target: darwin-x64
- os: macos-11
target: aarch64-apple-darwin
code-target: darwin-arm64
name: Package ${{ matrix.code-target }}
runs-on: ${{ matrix.os }}
needs: check
if: needs.check.outputs.version_changed == 'true' || needs.check.outputs.nightly == 'true'
outputs:
version: ${{ env.version }}
prerelease: ${{ env.prerelease }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Rust toolchain
run: rustup target add ${{ matrix.target }}
- name: Install arm64 toolchain
if: matrix.code-target == 'linux-arm64'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Audit crates.io dependencies
if: matrix.code-target == 'linux-x64'
run: cargo audit
# Build the LSP binary
- name: Build binaries
run: cargo build -p rome_bin --release --target ${{ matrix.target }}
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
# Strip all debug symbols from the resulting binaries
RUSTFLAGS: "-C strip=symbols"
- name: Copy LSP binary
if: matrix.os == 'windows-2022'
run: |
mkdir dist
mkdir editors/vscode/server
cp target/${{ matrix.target }}/release/rome.exe editors/vscode/server/rome.exe
- name: Copy LSP binary
if: matrix.os != 'windows-2022'
run: |
mkdir dist
mkdir editors/vscode/server
cp target/${{ matrix.target }}/release/rome editors/vscode/server/rome
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Update package.json version
if: needs.check.outputs.prerelease == 'true'
working-directory: editors/vscode
run: |
node ./scripts/updateVersionForPrerelease.mjs >> $GITHUB_ENV
echo "prerelease=true" >> $GITHUB_ENV
- name: Set release infos
if: needs.check.outputs.prerelease != 'true'
run: |
echo "version=${{ needs.check.outputs.version }}" >> $GITHUB_ENV
echo "prerelease=${{ needs.check.outputs.prerelease }}" >> $GITHUB_ENV
- name: Package extension
run: |
npm ci
npm run compile
npx vsce package -o "../../dist/rome_lsp-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
working-directory: editors/vscode
if: needs.check.outputs.prerelease != 'true'
- name: Package extension (pre-release)
run: |
npm ci
npm run compile
npx vsce package --pre-release -o "../../dist/rome_lsp-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
working-directory: editors/vscode
if: needs.check.outputs.prerelease == 'true'
- name: Upload VSCode extension artifact
uses: actions/upload-artifact@v3
with:
name: vscode_packages
path: ./dist/rome_lsp-${{ matrix.code-target }}.vsix
if-no-files-found: error
publish:
name: Publish
runs-on: ubuntu-latest
needs: build
environment: marketplace
steps:
- uses: actions/checkout@v3
- name: Download extension artifacts
uses: actions/download-artifact@v3
with:
name: vscode_packages
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 14.x
registry-url: 'https://registry.npmjs.org'
- name: Publish extension (pre-release)
run: npx vsce publish --pre-release --packagePath rome_lsp-*.vsix
if: needs.build.outputs.prerelease == 'true'
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
- name: Publish extension
run: npx vsce publish --packagePath rome_lsp-*.vsix
if: needs.build.outputs.prerelease != 'true'
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
- name: Create GitHub release and tag
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: VSCode Extension v${{ needs.build.outputs.version }}
tag_name: lsp/v${{ needs.build.outputs.version }}
draft: false
prerelease: ${{ needs.build.outputs.prerelease == 'true' }}
files: |
rome_lsp-*.vsix
fail_on_unmatched_files: true
generate_release_notes: true