Skip to content

Commit 188f596

Browse files
author
{your_name}
committed
test4
1 parent 0db41f8 commit 188f596

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/buildarm.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ jobs:
8585
- name: Checkout
8686
uses: actions/checkout@v4
8787

88+
- name: Install Chromium
89+
run: |
90+
sudo apt-get update
91+
sudo apt-get install -y chromium-browser
92+
8893
- name: Install Node.js
8994
uses: actions/setup-node@v4
9095
with:
@@ -111,10 +116,15 @@ jobs:
111116
repo-token: ${{ secrets.GITHUB_TOKEN }}
112117
version: 3.x
113118

119+
- name: Set Chromium executable path for Puppeteer
120+
run: |
121+
export PUPPETEER_EXECUTABLE_PATH=$(which chromium-browser)
122+
114123
- name: Package
115124
env:
116125
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117126
run: |
127+
export PUPPETEER_SKIP_DOWNLOAD=true
118128
yarn install
119129
yarn --cwd arduino-ide-extension build
120130
yarn --cwd electron-app rebuild

0 commit comments

Comments
 (0)