From ae8a40cc52d4772dadf929478cc44817c3862a27 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Sun, 27 Apr 2025 00:14:31 -0700 Subject: [PATCH] [ci] more debugging --- .github/actions/build-linux-arm/action.yml | 6 ++++++ .github/actions/build/action.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/actions/build-linux-arm/action.yml b/.github/actions/build-linux-arm/action.yml index 6d12b5e9..6741548a 100644 --- a/.github/actions/build-linux-arm/action.yml +++ b/.github/actions/build-linux-arm/action.yml @@ -50,6 +50,12 @@ runs: restore-keys: | ${{ runner.os }}-yarn- + - name: Delete old electron headers + # These can sometimes be present on a freshly-provisioned github runner, so remove them + shell: bash + run: | + rm -rf ~/.electron-gyp || true + - name: Install dependencies and tools shell: bash run: | diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 6ff94090..5afc6cfa 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -51,6 +51,12 @@ runs: restore-keys: | ${{ runner.os }}-yarn- + - name: Delete old electron headers + # These can sometimes be present on a freshly-provisioned github runner, so remove them + shell: bash + run: | + rm -rf ~/.electron-gyp || true + - name: Install shell: bash run: yarn install