From f98532517e78099784cb10142e4d9eafd759f53a Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Tue, 1 Nov 2022 00:40:20 +0300 Subject: [PATCH 1/2] Remove paths / paths-ignore condition from CI Does not work very well with branch protection rules. Pending some other solution, re-enable our ability to merge stuff. --- .github/workflows/build-host.yml | 5 ----- .github/workflows/build-ide.yml | 5 ----- .github/workflows/build-platformio.yml | 4 ---- .github/workflows/check-autogenerated.yml | 7 ------- .github/workflows/documentation.yml | 2 -- 5 files changed, 23 deletions(-) diff --git a/.github/workflows/build-host.yml b/.github/workflows/build-host.yml index 148a77b766..079f8885cd 100644 --- a/.github/workflows/build-host.yml +++ b/.github/workflows/build-host.yml @@ -5,11 +5,6 @@ name: Build on host OS on: pull_request: - paths-ignore: - - "boards.txt" - - "package/**" - - "tools/boards.txt.py" - - 'doc/**' permissions: contents: read diff --git a/.github/workflows/build-ide.yml b/.github/workflows/build-ide.yml index 4ef778c6ae..a2801a60cb 100644 --- a/.github/workflows/build-ide.yml +++ b/.github/workflows/build-ide.yml @@ -4,11 +4,6 @@ name: Build IDE examples on: pull_request: - paths-ignore: - - "boards.txt" - - "package/**" - - "tools/boards.txt.py" - - 'doc/**' permissions: contents: read diff --git a/.github/workflows/build-platformio.yml b/.github/workflows/build-platformio.yml index 10ec45101d..db2f5187a6 100644 --- a/.github/workflows/build-platformio.yml +++ b/.github/workflows/build-platformio.yml @@ -6,10 +6,6 @@ name: Build examples with PlatformIO on: pull_request: - paths-ignore: - - "boards.txt" - - "tools/boards.txt.py" - - 'doc/**' permissions: contents: read diff --git a/.github/workflows/check-autogenerated.yml b/.github/workflows/check-autogenerated.yml index a373a225fd..dc0e624e35 100644 --- a/.github/workflows/check-autogenerated.yml +++ b/.github/workflows/check-autogenerated.yml @@ -4,13 +4,6 @@ name: Check autogenerated files on: pull_request: - paths: - - "boards.txt" - - "bootloaders/**" - - "doc/boards.rst" - - "package/**" - - "tools/boards.txt.py" - - "tools/sdk/ld/**" permissions: contents: read diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7809605cab..1120851742 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -4,8 +4,6 @@ name: Documentation on: pull_request: - paths: - - 'doc/**' permissions: contents: read From 72a04479129c7de608fb907d6285c3b118385151 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Tue, 1 Nov 2022 01:12:12 +0300 Subject: [PATCH 2/2] fix --- libraries/esp8266/examples/IramReserve/ProcessKey.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/esp8266/examples/IramReserve/ProcessKey.ino b/libraries/esp8266/examples/IramReserve/ProcessKey.ino index 4c98899cf4..9e76aac874 100644 --- a/libraries/esp8266/examples/IramReserve/ProcessKey.ino +++ b/libraries/esp8266/examples/IramReserve/ProcessKey.ino @@ -1,6 +1,7 @@ #include void crashMeIfYouCan(void) __attribute__((weak)); int divideA_B(int a, int b); +int divideA_B_bp(int a, int b); int* nullPointer = NULL;