-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #899 from NebraLtd/master
merge wingbits to production
- Loading branch information
Showing
15 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: production | ||
|
||
|
@@ -59,14 +59,14 @@ jobs: | |
python gen_docker_compose_by_variant.py "$variant" -o docker-compose.yml | ||
- name: Balena Deploy | ||
uses: nebraltd/[email protected].0 | ||
uses: nebraltd/[email protected].6 | ||
with: | ||
balena_api_token: ${{secrets.NEBRAOS_CLOUD_TOKEN}} | ||
balena_url: cloud.nebra.com | ||
balena_command: "deploy nebraltd/${{ env.REPO }} --debug --nocache --build --draft" | ||
|
||
- name: Upload docker-compose.yml artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO }} | ||
path: docker-compose.yml | ||
|
@@ -82,7 +82,7 @@ jobs: | |
body: "This is helium-miner-software release ${{ env.LATEST_GA }}-${{ env.day }}" | ||
|
||
- name: Trigger build action in ${{ env.REPO }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
event-type: build-open-fleet | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: production | ||
|
||
|
@@ -65,14 +65,14 @@ jobs: | |
python gen_docker_compose_by_variant.py "$variant" -o docker-compose.yml | ||
- name: Balena Deploy | ||
uses: nebraltd/[email protected].0 | ||
uses: nebraltd/[email protected].6 | ||
with: | ||
balena_api_token: ${{secrets.NEBRAOS_CLOUD_TOKEN}} | ||
balena_url: cloud.nebra.com | ||
balena_command: "deploy nebraltd/${{ env.REPO }} --debug --nocache --build" | ||
|
||
- name: Upload docker-compose.yml artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO }} | ||
path: docker-compose.yml | ||
|
@@ -88,7 +88,7 @@ jobs: | |
body: "This is helium-miner-software release ${{ env.LATEST_GA }}-${{ env.day }}" | ||
|
||
- name: Trigger build action in ${{ env.REPO }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
event-type: build-open-fleet | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
sbc: [raspi, rockpi, rak, finestra, sensecap, og, controllino, pisces, cotx, pantherx1, linxdot, linxdot-rk3566, syncrobit, syncrobit-rkcm3, pycom, risinghf, midas, bobcat-px30, bobcat-rk3566] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python Libraries | ||
run: pip install -r requirements.txt | ||
|
@@ -83,21 +83,21 @@ jobs: | |
fi | ||
- name: Balena Deploy | ||
uses: nebraltd/[email protected].0 | ||
uses: nebraltd/[email protected].6 | ||
with: | ||
balena_api_token: ${{secrets.NEBRAOS_CLOUD_TOKEN}} | ||
balena_url: cloud.nebra.com | ||
balena_command: "deploy nebraltd/${{ env.FLEET }} --debug --nocache --build --draft" | ||
|
||
- name: Upload docker-compose.yml artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO }}.testnet | ||
path: docker-compose.yml | ||
|
||
- name: Upload docker-compose.yml artifact (repo2) | ||
if: env.REPO2 != 'None' | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO2 }}.testnet | ||
path: docker-compose.yml.${{ env.REPO2 }} | ||
|
@@ -124,15 +124,15 @@ jobs: | |
body: "TESTNET: This is helium-miner-software release TESTNET-${{ env.LATEST_GA }}-${{ env.day }}" | ||
|
||
- name: Trigger build action in ${{ env.REPO }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
event-type: build-open-fleet | ||
repository: NebraLtd/${{ env.REPO }} | ||
client-payload: '{"release": "${{ env.LATEST_GA }}_GA", "tag": "${{ env.LATEST_GA }}", "firmware": "${{ env.FIRMWARE_SHORT_HASH }}", "branch": "${{ env.GITHUB_BRANCH }}"}' | ||
|
||
- name: Trigger build action in ${{ env.REPO2 }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
if: matrix.sbc == 'raspi' || matrix.sbc == 'rockpi' | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
sbc: [raspi, rockpi, rak, finestra, sensecap, og, controllino, pisces, cotx, pantherx1, linxdot, linxdot-rk3566, syncrobit, syncrobit-rkcm3, pycom, risinghf, midas, bobcat-px30, bobcat-rk3566] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python Libraries | ||
run: pip install -r requirements.txt | ||
|
@@ -89,21 +89,21 @@ jobs: | |
fi | ||
- name: Balena Deploy | ||
uses: nebraltd/[email protected].0 | ||
uses: nebraltd/[email protected].6 | ||
with: | ||
balena_api_token: ${{secrets.NEBRAOS_CLOUD_TOKEN}} | ||
balena_url: cloud.nebra.com | ||
balena_command: "deploy nebraltd/${{ env.FLEET }} --debug --nocache --build" | ||
|
||
- name: Upload docker-compose.yml artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO }}.testnet | ||
path: docker-compose.yml | ||
|
||
- name: Upload docker-compose.yml artifact (repo2) | ||
if: env.REPO2 != 'None' | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docker-compose.yml.${{ env.REPO2 }}.testnet | ||
path: docker-compose.yml.${{ env.REPO2 }} | ||
|
@@ -130,15 +130,15 @@ jobs: | |
body: "TESTNET: This is helium-miner-software release TESTNET-${{ env.LATEST_GA }}-${{ env.day }}" | ||
|
||
- name: Trigger build action in ${{ env.REPO }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
event-type: build-open-fleet | ||
repository: NebraLtd/${{ env.REPO }} | ||
client-payload: '{"release": "${{ env.LATEST_GA }}_GA", "tag": "${{ env.LATEST_GA }}", "firmware": "${{ env.FIRMWARE_SHORT_HASH }}", "branch": "${{ env.GITHUB_BRANCH }}"}' | ||
|
||
- name: Trigger build action in ${{ env.REPO2 }} repo | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
if: matrix.sbc == 'raspi' || matrix.sbc == 'rockpi' | ||
with: | ||
token: ${{ secrets.MR_BUMP }} | ||
|
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
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,3 +1,3 @@ | ||
jinja2==3.1.2 | ||
jinja2==3.1.4 | ||
grpcio==1.56.0 | ||
hm-pyhelper==0.14.32 |
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