mirror of
https://github.com/CarlGao4/um-react-electron.git
synced 2025-05-23 16:27:43 +08:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
a7db45386b | ||
|
8675fff999 | ||
|
a8f24f9ec0 | ||
|
bc10acf44b | ||
|
aee51c99c6 | ||
|
54b0be5e12 | ||
|
8cf45ee91d | ||
|
a7a4fde7dc | ||
|
1d1f16257b |
21
.github/workflows/build-electron.yml
vendored
21
.github/workflows/build-electron.yml
vendored
@ -35,12 +35,22 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.commit || github.sha }}
|
||||||
|
|
||||||
|
# 关键修改:补充编译依赖
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo dpkg --add-architecture i386
|
sudo dpkg --add-architecture i386
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install npm wine32
|
sudo apt-get install -y \
|
||||||
|
npm \
|
||||||
|
wine32 \
|
||||||
|
build-essential \
|
||||||
|
python3 \
|
||||||
|
libxi-dev \
|
||||||
|
libgl1-mesa-dev \
|
||||||
|
libpng-dev
|
||||||
|
|
||||||
- name: Install pnpm
|
- name: Install pnpm
|
||||||
uses: pnpm/action-setup@v2
|
uses: pnpm/action-setup@v2
|
||||||
@ -51,7 +61,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
cd um-react
|
cd um-react
|
||||||
pnpm install --frozen-lockfile
|
pnpm install --no-frozen-lockfile
|
||||||
cd ..
|
cd ..
|
||||||
npm install --frozen-lockfile
|
npm install --frozen-lockfile
|
||||||
|
|
||||||
@ -88,8 +98,11 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
|
|
||||||
|
# macOS 补充依赖
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: brew install node
|
run: |
|
||||||
|
brew install node
|
||||||
|
brew install pkg-config cairo pango libpng jpeg giflib
|
||||||
|
|
||||||
- name: Install pnpm
|
- name: Install pnpm
|
||||||
uses: pnpm/action-setup@v2
|
uses: pnpm/action-setup@v2
|
||||||
@ -100,7 +113,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
cd um-react
|
cd um-react
|
||||||
pnpm install --frozen-lockfile
|
pnpm install --no-frozen-lockfile
|
||||||
cd ..
|
cd ..
|
||||||
npm install --frozen-lockfile
|
npm install --frozen-lockfile
|
||||||
|
|
||||||
|
2
um-react
2
um-react
@ -1 +1 @@
|
|||||||
Subproject commit 58c96f264b95154cb217b48afa988a2f1689520a
|
Subproject commit d91e2fffe4747da635d4d82579205a0e8a8a298e
|
Loading…
x
Reference in New Issue
Block a user