mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
Remove paths / paths-ignore condition from CI (#8704)
Does not work very well with branch protection rules. Pending some other solution, re-enable our ability to merge stuff.
This commit is contained in:
parent
0aab6ecee2
commit
d36b21db38
5
.github/workflows/build-host.yml
vendored
5
.github/workflows/build-host.yml
vendored
@ -5,11 +5,6 @@ name: Build on host OS
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
|
||||||
- "boards.txt"
|
|
||||||
- "package/**"
|
|
||||||
- "tools/boards.txt.py"
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
5
.github/workflows/build-ide.yml
vendored
5
.github/workflows/build-ide.yml
vendored
@ -4,11 +4,6 @@ name: Build IDE examples
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
|
||||||
- "boards.txt"
|
|
||||||
- "package/**"
|
|
||||||
- "tools/boards.txt.py"
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
4
.github/workflows/build-platformio.yml
vendored
4
.github/workflows/build-platformio.yml
vendored
@ -6,10 +6,6 @@ name: Build examples with PlatformIO
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
|
||||||
- "boards.txt"
|
|
||||||
- "tools/boards.txt.py"
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
7
.github/workflows/check-autogenerated.yml
vendored
7
.github/workflows/check-autogenerated.yml
vendored
@ -4,13 +4,6 @@ name: Check autogenerated files
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
|
||||||
- "boards.txt"
|
|
||||||
- "bootloaders/**"
|
|
||||||
- "doc/boards.rst"
|
|
||||||
- "package/**"
|
|
||||||
- "tools/boards.txt.py"
|
|
||||||
- "tools/sdk/ld/**"
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
@ -4,8 +4,6 @@ name: Documentation
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <esp8266_undocumented.h>
|
#include <esp8266_undocumented.h>
|
||||||
void crashMeIfYouCan(void) __attribute__((weak));
|
void crashMeIfYouCan(void) __attribute__((weak));
|
||||||
int divideA_B(int a, int b);
|
int divideA_B(int a, int b);
|
||||||
|
int divideA_B_bp(int a, int b);
|
||||||
|
|
||||||
int* nullPointer = NULL;
|
int* nullPointer = NULL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user