-
Notifications
You must be signed in to change notification settings - Fork 10
120 lines (101 loc) · 3.16 KB
/
main.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
name: vscode-bitbake CI/CD
on:
workflow_dispatch:
push:
branches:
- '*'
tags:
- "v*"
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
env:
DBUS_SESSION_BUS_ADDRESS: unix:path=/run/user/1001/bus
SHELL: /usr/bin/bash
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Clean install
run: npm run clean
- name: Install Dependencies
run: npm install && npm run fetch && sudo apt install chrpath diffstat
- name: Run Linter
run: npm run lint
- name: Build Project
run: npm run compile
- name: Test Project
run: npm run test
- name: Build the VSIX
run: npm run package
- name: Archive VSIX
uses: actions/upload-artifact@v3
with:
name: vscode-bitbake
path: client/yocto-bitbake*.vsix
# Inspired by https://github.com/microsoft/vscode-platform-specific-sample/blob/a0192a21122dfa5c90934b006f027cdf4e4d892d/.github/workflows/ci.yml#L64C11-L64C11 MIT License
publish-vsce:
runs-on: ubuntu-latest
environment: VSCE
needs: build
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
- run: npx vsce publish --packagePath $(find . -iname yocto-bitbake*.vsix)
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
# Instructions on https://github.com/eclipse/openvsx/wiki/Publishing-Extensions
publish-open-vsx:
runs-on: ubuntu-latest
environment: OPEN-VSX
needs: build
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
- run: npx ovsx publish $(find . -iname yocto-bitbake*.vsix) -p ${VSX_PAT}
env:
VSX_PAT: ${{ secrets.VSX_PAT }}
build-language-server-standalone:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm run clean
- run: cd server && npm install
- run: cd server && npm pack
- name: Archive server package
uses: actions/upload-artifact@v3
with:
name: language-server-bitbake
path: server/language-server-bitbake-*.tgz
# Inspired by https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
publish-npm:
runs-on: ubuntu-latest
environment: NPM
needs: [build, build-language-server-standalone]
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- uses: actions/download-artifact@v3
- name: Publish to npm
run: npm publish $(find . -iname language-server-bitbake-*.tgz)
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}