mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Build the posix port on pushes and PRs to the Kernel repository (#290)
* Run posix build action when new commits are pushed to the FreeRTOS/Kernel repository * Run kernel unit tests on push and pull_request actions
This commit is contained in:
parent
9cd19603e8
commit
4ad84923a0
27
.github/workflows/kernel-checks.yml
vendored
27
.github/workflows/kernel-checks.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
name: Kernel-Checker
|
name: Kernel-Checker
|
||||||
|
|
||||||
on: [pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
kernel-checker:
|
kernel-checker:
|
||||||
|
@ -45,3 +45,28 @@ jobs:
|
||||||
cd inspect
|
cd inspect
|
||||||
.github/scripts/kernel_checker.py --json ${HOME}/files_modified.json ${HOME}/files_added.json ${HOME}/files_renamed.json
|
.github/scripts/kernel_checker.py --json ${HOME}/files_modified.json ${HOME}/files_added.json ${HOME}/files_renamed.json
|
||||||
exit $?
|
exit $?
|
||||||
|
build-checker:
|
||||||
|
name: FreeRTOS Posix Build Check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout the parent repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
ref: master
|
||||||
|
repository: FreeRTOS/FreeRTOS
|
||||||
|
submodules: 'recursive'
|
||||||
|
fetch-depth: 1
|
||||||
|
path: ./workspace
|
||||||
|
- name: Checkout the current repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: ./workspace/FreeRTOS/Source
|
||||||
|
- name: Posix Build Checker
|
||||||
|
run: |
|
||||||
|
bash workspace/.github/scripts/posix_build_checker.sh workspace
|
||||||
|
- name: Install lib pcap dev
|
||||||
|
run: |
|
||||||
|
sudo apt-get install libpcap-dev
|
||||||
|
- name: Posix Network Build Checker
|
||||||
|
run: |
|
||||||
|
bash workspace/.github/scripts/posix_network_build_checker.sh workspace
|
||||||
|
|
4
.github/workflows/unit-tests.yml
vendored
4
.github/workflows/unit-tests.yml
vendored
|
@ -1,11 +1,11 @@
|
||||||
name: CMock Unit Tests
|
name: CMock Unit Tests
|
||||||
on: [push]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Parent Repo
|
- name: Checkout Parent Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
|
|
Loading…
Reference in a new issue