-
Notifications
You must be signed in to change notification settings - Fork 15
102 lines (93 loc) · 2.58 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Copyright (c) 2023 Arm Limited and/or its affiliates
# SPDX-License-Identifier: MIT
name: CI Checks
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- closed
branches:
- main
workflow_dispatch:
jobs:
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
link-verifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check Links
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
with:
exclude-urls: 'https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-\`uname'
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:
fail-on-incorrect-version: true
git-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout awslabs/git-secrets
uses: actions/checkout@v3
with:
repository: awslabs/git-secrets
ref: master
path: git-secrets
- name: Install git-secrets
run: cd git-secrets && sudo make install && cd ..
- name: Run git-secrets
run: |
git-secrets --register-aws
git-secrets --scan
formatting:
runs-on: ubuntu-20.04
steps:
- name: Checkout project
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}
submodules: 'recursive'
- name: Check formatting
shell: bash
run: |
sudo apt-get -y update
sudo apt-get -y install fd-find
./tools/scripts/run_uncrustify.sh
unit-tests:
runs-on: ubuntu-latest
steps:
# Add submodules including fff and googletest.
- name: Checkout project
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}
submodules: 'recursive'
- name: Install unit test build dependencies
shell: bash
run: |
pip install cmake ninja
# Run the unit tests
- name: Run unit tests
shell: bash
run: |
cmake -S . -B build_unit_test -GNinja -DOPT_ENABLE_COVERAGE=ON
cmake --build build_unit_test
ctest --test-dir build_unit_test --output-on-failure