Skip to content

Commit 8c3dea5

Browse files
Merge branch 'main' into update_version_number
2 parents e32ddea + b0b9d3d commit 8c3dea5

File tree

5 files changed

+58
-5
lines changed

5 files changed

+58
-5
lines changed

.github/CODEOWNERS

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Each line is a file pattern followed by one or more owners.
2+
3+
# These owners will be the default owners for everything in
4+
# the repo. Unless a later match takes precedence,
5+
# @global-owner1 and @global-owner2 will be requested for
6+
# review when someone opens a pull request.
7+
* @FreeRTOS/pr-bar-raiser
8+
9+
# Order is important; the last matching pattern takes the most
10+
# precedence. When someone opens a pull request that only
11+
# modifies JS files, only @js-owner and not the global
12+
# owner(s) will be requested for a review.
13+
# *.c FreeRTOS/pr-bar-raiser
14+
15+
# You can also use email addresses if you prefer. They'll be
16+
# used to look up users just like we do for commit author
17+
# emails.
18+
19+
20+
# In this example, @doctocat owns any files in the build/logs
21+
# directory at the root of the repository and any of its
22+
# subdirectories.
23+
# /build/logs/ @doctocat
24+
25+
# The `docs/*` pattern will match files like
26+
# `docs/getting-started.md` but not further nested files like
27+
# `docs/build-app/troubleshooting.md`.
28+
29+
30+
# In this example, @octocat owns any file in an apps directory
31+
# anywhere in your repository.
32+
# apps/ @octocat
33+
34+
# In this example, @doctocat owns any file in the `/docs`
35+
# directory in the root of your repository and any of its
36+
# subdirectories.
37+
# /docs/ @doctocat

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,13 @@ jobs:
151151
submodules: true
152152
fetch-depth: 0
153153

154+
# At time of writing the gitmodules are set not to pull
155+
# Even when using fetch submodules. Need to run this command
156+
# To force it to grab them.
157+
- name: Perform Recursive Clone
158+
shell: bash
159+
run: git submodule update --checkout --init --recursive
160+
154161
- name: Run manifest verifier
155162
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@main
156163
with:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
ref: ${{ github.event.inputs.commit_id }}
2222
- name: Configure git identity
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install ZIP tools
5454
run: sudo apt-get install zip unzip
5555
- name: Checkout code
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
ref: ${{ github.event.inputs.commit_id }}
5959
path: backoffAlgorithm
@@ -91,7 +91,7 @@ jobs:
9191
ctest -E system --output-on-failure
9292
cd ..
9393
- name: Create artifact of ZIP
94-
uses: actions/upload-artifact@v2
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: backoffAlgorithm-${{ github.event.inputs.version_number }}.zip
9797
path: zip-check/backoffAlgorithm-${{ github.event.inputs.version_number }}.zip
@@ -124,7 +124,7 @@ jobs:
124124
draft: false
125125
prerelease: false
126126
- name: Download ZIP artifact
127-
uses: actions/download-artifact@v2
127+
uses: actions/download-artifact@v4
128128
with:
129129
name: backoffAlgorithm-${{ github.event.inputs.version_number }}.zip
130130
- name: Upload Release Asset

manifest.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,12 @@ version: "v1.4.0"
33
description: |
44
"Algorithm for calculating exponential backoff with jitter for network retry attempts.\n"
55
license: "MIT"
6+
7+
dependencies:
8+
- name: "Unity"
9+
version: v2.6.0
10+
license: "MIT"
11+
repository:
12+
type: "git"
13+
url: "https://github.com/ThrowTheSwitch/Unity.git"
14+
path: test/unit-test/Unity

test/unit-test/Unity

Submodule Unity updated 69 files

0 commit comments

Comments
 (0)