build: move hunspell generation to Linux (#42480)
This commit is contained in:
parent
f72096194f
commit
42266546eb
2 changed files with 5 additions and 5 deletions
5
.github/workflows/linux-pipeline.yml
vendored
5
.github/workflows/linux-pipeline.yml
vendored
|
@ -268,6 +268,11 @@ jobs:
|
|||
cd src
|
||||
gn gen out/ffmpeg --args="import(\"//electron/build/args/ffmpeg.gn\") use_remoteexec=true $GN_EXTRA_ARGS"
|
||||
autoninja -C out/ffmpeg electron:electron_ffmpeg_zip -j $NUMBER_OF_NINJA_PROCESSES
|
||||
- name: Generate Hunspell Dictionaries
|
||||
if: ${{ inputs.is-release }}
|
||||
run: |
|
||||
cd src
|
||||
autoninja -C out/Default electron:hunspell_dictionaries_zip -j $NUMBER_OF_NINJA_PROCESSES
|
||||
- name: Maybe Generate Libcxx
|
||||
if: ${{ inputs.is-release }}
|
||||
run: |
|
||||
|
|
5
.github/workflows/macos-pipeline.yml
vendored
5
.github/workflows/macos-pipeline.yml
vendored
|
@ -393,11 +393,6 @@ jobs:
|
|||
cd src
|
||||
gn gen out/ffmpeg --args="import(\"//electron/build/args/ffmpeg.gn\") use_remoteexec=true $GN_EXTRA_ARGS"
|
||||
autoninja -C out/ffmpeg electron:electron_ffmpeg_zip -j $NUMBER_OF_NINJA_PROCESSES
|
||||
- name: Generate Hunspell Dictionaries
|
||||
if: ${{ inputs.is-release }}
|
||||
run: |
|
||||
cd src
|
||||
autoninja -C out/Default electron:hunspell_dictionaries_zip -j $NUMBER_OF_NINJA_PROCESSES
|
||||
- name: Generate TypeScript Definitions
|
||||
if: ${{ inputs.is-release }}
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue