Skip to content

Commit

Permalink
Revert "CI-CD Updates (FreeRTOS#768)"
Browse files Browse the repository at this point in the history
This reverts commit 5fb9b50.
  • Loading branch information
Skptak committed Oct 10, 2023
1 parent 9d2571d commit 5379c18
Show file tree
Hide file tree
Showing 482 changed files with 109,399 additions and 110,599 deletions.
918 changes: 0 additions & 918 deletions .github/.cSpellWords.txt

This file was deleted.

3,165 changes: 3,165 additions & 0 deletions .github/lexicon.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/pull_request_process.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pull Request Process

This document explains the stages that a Pull Request (PR) goes through when a pull request is submitted to a git repository in the FreeRTOS organization in Github. Before you start a PR, please read and familiarize yourself with [CONTRIBUTING.md](CONTRIBUTING.md)
This document explains the stages that a Pull Request (PR) goes through when a pull request is submitted to a git repository in the FreeRTOS organization in Github. Before you start a PR, please read and familiarize yourself with [CONTRIBUTING.md](.github/CONTRIBUTING.md)

## ****Terminologies****

Expand Down
8 changes: 2 additions & 6 deletions .github/scripts/kernel_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@
KERNEL_IGNORED_FILES = [
'FreeRTOS-openocd.c',
'Makefile',
'.DS_Store',
'cspell.config.yaml'
'.DS_Store'
]

KERNEL_IGNORED_EXTENSIONS = [
Expand Down Expand Up @@ -89,10 +88,7 @@
r'.*portable/IAR/AtmelSAM7S64/.*AT91SAM7.*',
r'.*portable/GCC/ARM7_AT91SAM7S/.*',
r'.*portable/MPLAB/PIC18F/stdio.h',
r'.*portable/ThirdParty/xClang/XCOREAI/*',
r'.*IAR/ARM_C*',
r'.*IAR/78K0R/*',
r'.*CCS/MSP430X/*'
r'.*portable/ThirdParty/xClang/XCOREAI/*'
]

KERNEL_THIRD_PARTY_PATTERNS = [
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

# Currently FreeRTOS/.github/scripts houses the release script. Download it for upcoming usage
- name: Checkout FreeRTOS Release Tools
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
repository: FreeRTOS/FreeRTOS
path: tools

# Simpler git auth if we use checkout action and forward the repo to release script
- name: Checkout FreeRTOS Kernel
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: local_kernel
fetch-depth: 0
Expand Down
100 changes: 61 additions & 39 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,53 +6,75 @@ on:
branches: [main]
workflow_dispatch:
jobs:
formatting:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check Formatting of FreeRTOS-Kernel Files
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main

spell-check:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v3
- name: Run spellings check
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
with:
path: ./
exclude-files: History.txt

link-verifier:
runs-on: ubuntu-latest
steps:
- name: Checkout Parent Repo
uses: actions/checkout@v2
with:
ref: main
repository: aws/aws-iot-device-sdk-embedded-C
path: main
- name: Clone This Repo
uses: actions/checkout@v3
- name: Link Verification
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
uses: actions/checkout@v2
with:
path: ./kernel
- name: Install spell
run: |
sudo apt-get install spell
sudo apt-get install util-linux
- name: Check spelling
run: |
PATH=$PATH:main/tools/spell
# Make sure that the portable directory is not included in the spellcheck.
sed -i 's/find $DIRNAME/find $DIRNAME -not -path '*portable*'/g' main/tools/spell/find-unknown-comment-words
find-unknown-comment-words --directory kernel/ --lexicon ./kernel/.github/lexicon.txt
if [ "$?" = "0" ]; then
exit 0
else
exit 1
fi
formatting:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Uncrustify
run: sudo apt-get install uncrustify=0.69.0+dfsg1-1build1
- name: Run Uncrustify
run: |
uncrustify --version
find . portable/MemMang/* portable/Common/* \( -name portable \) -prune -false -o -iname "*.[hc]" -exec uncrustify --check -c .github/uncrustify.cfg {} +
- name: Check For Trailing Whitespace
run: |
set +e
grep --exclude="*.md" --exclude-dir=".git" -rnI -e "[[:blank:]]$" .
if [ "$?" = "0" ]; then
echo "Files have trailing whitespace."
exit 1
else
exit 0
fi
shell: bash
- name: Check for CRLF
working-directory: ${{ inputs.path }}
run: |
set +e
find . -path ./.git -prune -o -exec file {} + | grep "CRLF"
if [ "$?" = "0" ]; then
echo "Files have CRLF line endings."
exit 1
else
exit 0
fi
shell: bash

url-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clone This Repo
uses: actions/checkout@v2
with:
path: ./kernel

path: ./kernel
- name: URL Checker
run: |
bash kernel/.github/actions/url_verifier.sh kernel
verify-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0

- name: Run manifest verifier
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@main
with:
path: ./
fail-on-incorrect-version: true
bash kernel/.github/actions/url_verifier.sh kernel
4 changes: 2 additions & 2 deletions .github/workflows/git-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
git-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Checkout awslabs/git-secrets
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
repository: awslabs/git-secrets
ref: master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kernel-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

# There is shared code, hosted by FreeRTOS/FreeRTOS, with deps needed by header checker
- name: Checkout FreeRTOS Tools
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
repository: FreeRTOS/FreeRTOS
ref: main
path: tools

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: inspect

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/kernel-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout the FreeRTOS/FreeRTOS Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -16,7 +16,7 @@ jobs:

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout the FreeRTOS/FreeRTOS Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -45,7 +45,7 @@ jobs:

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the FreeRTOS/FreeRTOS Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -70,7 +70,7 @@ jobs:

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand All @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the FreeRTOS/FreeRTOS Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -104,7 +104,7 @@ jobs:

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand All @@ -124,7 +124,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the FreeRTOS/FreeRTOS Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -146,7 +146,7 @@ jobs:
# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Parent Repository
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
ref: main
repository: FreeRTOS/FreeRTOS
Expand All @@ -15,7 +15,7 @@ jobs:

# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
path: ./FreeRTOS/Source

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.15)
# FREERTOS_PORT, if not specified and native port detected, uses the native compile.
#
# User is responsible for one library target:
# freertos_config ,typically an INTERFACE library
# freertos_config ,typcially an INTERFACE library
#
# DEPRECATED: FREERTOS_CONFIG_FILE_DIRECTORY - but still supported if no freertos_config defined for now.
# May be removed at some point in the future.
Expand Down
Loading

0 comments on commit 5379c18

Please sign in to comment.