-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into main
- Loading branch information
Showing
8 changed files
with
104 additions
and
59 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
env: | ||
OTP_VERSION: 27.1.2 | ||
ELIXIR_VERSION: 1.17.3-otp-27 | ||
NERVES_BOOTSTRAP_VERSION: 1.13.0 | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
get-br-dependencies: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: gridpoint-com/actions-nerves-system@v1 | ||
- name: Get Buildroot Dependencies | ||
uses: ./.actions/get-br-dependencies | ||
with: | ||
otp-version: ${{ env.OTP_VERSION }} | ||
elixir-version: ${{ env.ELIXIR_VERSION }} | ||
nerves-bootstrap-version: ${{ env.NERVES_BOOTSTRAP_VERSION }} | ||
push-to-download-site: false | ||
download-site-url: ${{ vars.PUBLIC_S3_SITE }} | ||
download-site-bucket-uri: ${{ vars.S3_BUCKET }} | ||
aws-role: ${{ secrets.AWS_ROLE }} | ||
aws-region: ${{ vars.AWS_REGION }} | ||
build-system: | ||
needs: [get-br-dependencies] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: gridpoint-com/actions-nerves-system@v1 | ||
- name: Build nerves_system | ||
uses: ./.actions/build-system | ||
with: | ||
otp-version: ${{ env.OTP_VERSION }} | ||
elixir-version: ${{ env.ELIXIR_VERSION }} | ||
nerves-bootstrap-version: ${{ env.NERVES_BOOTSTRAP_VERSION }} | ||
deploy-system: | ||
needs: [build-system] | ||
if: github.ref_type == 'tag' | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: gridpoint-com/actions-nerves-system@v1 | ||
- name: Deploy nerves_system | ||
uses: ./.actions/deploy-system | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,26 @@ follows: | |
releases, and Linux kernel updates. They're also made to fix bugs and add | ||
features to the build infrastructure. | ||
|
||
## v1.29.0 | ||
|
||
This is a major Erlang and Buildroot update. | ||
|
||
Please see the [nerves_system_br v1.29.0 release notes](https://github.com/nerves-project/nerves_system_br/releases/tag/v1.29.0) | ||
for upgrade instructions if you've forked this system. | ||
|
||
* Changes | ||
* Applied and enabled the Real-Time Linux patch set, PREEMPT_RT. Please see | ||
write-ups on the web for benefits and how to use. The impact of this patch | ||
shouldn't be noticeable to most Nerves users. | ||
* Switch CPU frequency governor from conservative to the more modern | ||
schedutil. See [LWN article](https://lwn.net/Articles/682391/) for details. | ||
* Fix missing option for out-of-the-box QMI (cellular modem) support | ||
|
||
* Updated dependencies | ||
* [nerves_system_br v1.29.1](https://github.com/nerves-project/nerves_system_br/releases/tag/v1.29.1) | ||
* [Buildroot 2024.08.2](https://lore.kernel.org/buildroot/[email protected]/T/) | ||
* Linux 6.6.51 (Raspberry Pi stable_20241008 release) | ||
|
||
## v1.28.1 | ||
|
||
This is a security/bug fix update. | ||
|
@@ -29,7 +49,7 @@ This is a security/bug fix update. | |
|
||
## v1.28.0 | ||
|
||
This is a major Erlang and Buildroot. | ||
This is a major Erlang and Buildroot update. | ||
|
||
Please see the [nerves_system_br v1.28.0 release notes](https://github.com/nerves-project/nerves_system_br/releases/tag/v1.28.0) | ||
for upgrade instructions if you've forked this system. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.28.1 | ||
1.29.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters