From 42266546ebbaf5f5c8d29029097418c0956e641c Mon Sep 17 00:00:00 2001 From: Keeley Hammond Date: Thu, 13 Jun 2024 09:37:36 -0500 Subject: [PATCH] build: move hunspell generation to Linux (#42480) --- .github/workflows/linux-pipeline.yml | 5 +++++ .github/workflows/macos-pipeline.yml | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux-pipeline.yml b/.github/workflows/linux-pipeline.yml index f7e423b6c3..7f8a2f9bfb 100644 --- a/.github/workflows/linux-pipeline.yml +++ b/.github/workflows/linux-pipeline.yml @@ -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: | diff --git a/.github/workflows/macos-pipeline.yml b/.github/workflows/macos-pipeline.yml index 9f0994f1ef..6ed1e5f438 100644 --- a/.github/workflows/macos-pipeline.yml +++ b/.github/workflows/macos-pipeline.yml @@ -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: |