Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove paths / paths-ignore condition from CI #8704

Merged
merged 2 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/build-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/build-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Build IDE examples

on:
pull_request:
paths-ignore:
- "boards.txt"
- "package/**"
- "tools/boards.txt.py"
- 'doc/**'

permissions:
contents: read
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/build-platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ name: Build examples with PlatformIO

on:
pull_request:
paths-ignore:
- "boards.txt"
- "tools/boards.txt.py"
- 'doc/**'

permissions:
contents: read
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/check-autogenerated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ name: Documentation

on:
pull_request:
paths:
- 'doc/**'

permissions:
contents: read
Expand Down
1 change: 1 addition & 0 deletions libraries/esp8266/examples/IramReserve/ProcessKey.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <esp8266_undocumented.h>
void crashMeIfYouCan(void) __attribute__((weak));
int divideA_B(int a, int b);
int divideA_B_bp(int a, int b);

int* nullPointer = NULL;

Expand Down