Skip to content

Commit ad13a1f

Browse files
authored
CI-CD URL Check Change (#880)
* Remove the Kernel's custom URL check to just use the CI-CD Actions one * Exclude portable directory from formatting check.
1 parent 9c649ea commit ad13a1f

File tree

3 files changed

+6
-78
lines changed

3 files changed

+6
-78
lines changed

.github/actions/url_verifier.sh

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- name: Check Formatting of FreeRTOS-Kernel Files
1414
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main
15+
with:
16+
exclude-dirs: portable
1517

1618
spell-check:
1719
runs-on: ubuntu-latest
@@ -30,18 +32,7 @@ jobs:
3032
- name: Clone This Repo
3133
uses: actions/checkout@v3
3234
- name: Link Verification
33-
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
34-
35-
url-check:
36-
runs-on: ubuntu-latest
37-
steps:
38-
- uses: actions/checkout@v3
39-
with:
40-
path: ./kernel
41-
42-
- name: URL Checker
43-
run: |
44-
bash kernel/.github/actions/url_verifier.sh kernel
35+
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
4536

4637
verify-manifest:
4738
runs-on: ubuntu-latest

.github/workflows/formatting.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ jobs:
1919
runs-on: ubuntu-20.04
2020
steps:
2121
- name: Apply Formatting Fix
22+
id: check-formatting
2223
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main
23-
id: check-formatting
24+
with:
25+
exclude-dirs: portable

0 commit comments

Comments
 (0)