Skip to content

Commit fd8c533

Browse files
committed
speed up ci
1 parent 183d067 commit fd8c533

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Build webview
6161
run: yarn run build:webview
6262
- name: Package extension
63-
run: npx @vscode/vsce package --yarn --githubBranch ${{ github.ref_name }}
63+
run: npx --yes @vscode/vsce package --yarn --githubBranch ${{ github.ref_name }}
6464
- name: Upload extension
6565
uses: actions/upload-artifact@v4
6666
with:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
sudo DEBIAN_FRONTEND=noninteractive \
5757
apt install -y --no-install-recommends \
58-
ffmpeg libnss3 xvfb libx11-6 libxext6 \
58+
ffmpeg libnss3 xvfb \
5959
-o Dpkg::Options::="--path-exclude=/usr/share/man/*" \
6060
-o Dpkg::Options::="--path-exclude=/usr/share/doc/*"
6161
- name: Install extension dependencies

.github/workflows/update-assets.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ jobs:
2222
with:
2323
node-version: 20
2424
- name: Install asset generation dependencies
25-
run: sudo apt install -y ffmpeg libnss3 xvfb
25+
run: |
26+
sudo DEBIAN_FRONTEND=noninteractive \
27+
apt install -y --no-install-recommends \
28+
ffmpeg libnss3 xvfb \
29+
-o Dpkg::Options::="--path-exclude=/usr/share/man/*" \
30+
-o Dpkg::Options::="--path-exclude=/usr/share/doc/*"
2631
- name: Install extension dependencies
2732
run: yarn run install:all
2833
- name: Build webview

0 commit comments

Comments
 (0)