Skip to content

Commit 991fffd

Browse files
Merge branch 'main' into add-cortex-r82-non-mpu-gcc-armclang-port
2 parents 255b9b6 + 48a4939 commit 991fffd

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/auto-release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ on:
1818

1919
jobs:
2020
release-packager:
21+
permissions:
22+
id-token: write
2123
name: Release Packager
2224
runs-on: ubuntu-latest
2325
steps:
@@ -117,6 +119,14 @@ jobs:
117119
./tools/.github/scripts/release.py "$REPO_OWNER" --kernel-repo-path=local_kernel --kernel-commit="$COMMIT_SHA_2" --new-kernel-version="$VERSION_NUMBER" --new-kernel-main-br-version="$MAIN_BR_VERSION_NUMBER"
118120
exit $?
119121
122+
- name: Backup Release Asset
123+
uses: FreeRTOS/CI-CD-Github-Actions/artifact-backup@main
124+
with:
125+
# This is dependent on the release script putting this zip file
126+
# in this exact location.
127+
artifact_path: ./tools/.github/scripts/FreeRTOS-KernelV${{ github.event.inputs.version_number }}.zip
128+
release_tag: ${{ github.event.inputs.version_number }}
129+
120130
- name: Cleanup
121131
env:
122132
VERSION_NUMBER: ${{ github.event.inputs.version_number }}

include/list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*
4545
* In addition to it's value, each list item contains a pointer to the next
4646
* item in the list (pxNext), a pointer to the list it is in (pxContainer)
47-
* and a pointer to back to the object that contains it. These later two
47+
* and a pointer back to the object that contains it. These later two
4848
* pointers are included for efficiency of list manipulation. There is
4949
* effectively a two way link between the object containing the list item and
5050
* the list item itself.

portable/ThirdParty/GCC/Posix/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ void prvFatalError( const char * pcCall,
193193
}
194194
/*-----------------------------------------------------------*/
195195

196-
static void prvPortSetCurrentThreadName( char * pxThreadName )
196+
static void prvPortSetCurrentThreadName( const char * pxThreadName )
197197
{
198198
#ifdef __APPLE__
199199
pthread_setname_np( pxThreadName );

0 commit comments

Comments
 (0)