Merge branch 'feature/mqtt-rework' into feature/telemetry
This commit is contained in:
commit
9e355ca573
|
@ -1,5 +1,6 @@
|
||||||
block_labels = [ "S-blocked" ]
|
block_labels = [ "S-blocked" ]
|
||||||
delete_merged_branches = true
|
delete_merged_branches = true
|
||||||
|
timeout_sec = 1200
|
||||||
status = [
|
status = [
|
||||||
"style",
|
"style",
|
||||||
"test (stable)",
|
"test (stable)",
|
||||||
|
|
|
@ -12,15 +12,25 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
environment: hitl
|
environment: hitl
|
||||||
steps:
|
steps:
|
||||||
|
- uses: LouisBrunner/checks-action@v1.1.1
|
||||||
|
id: hitl-check
|
||||||
|
with:
|
||||||
|
repo: ${{ github.repository }}
|
||||||
|
sha: ${{ github.event.head_commit.id }}
|
||||||
|
token: ${{ github.token }}
|
||||||
|
name: HITL Run Status
|
||||||
|
status: in_progress
|
||||||
|
details_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
|
||||||
|
output: |
|
||||||
|
{"summary": "Starting..."}
|
||||||
|
|
||||||
- uses: peter-evans/repository-dispatch@v1
|
- uses: peter-evans/repository-dispatch@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.DISPATCH_PAT }}
|
token: ${{ secrets.DISPATCH_PAT }}
|
||||||
event-type: stabilizer
|
event-type: stabilizer
|
||||||
repository: quartiq/hitl
|
repository: quartiq/hitl
|
||||||
client-payload: '{"github": ${{ toJson(github) }}}'
|
client-payload: |
|
||||||
|
{"github": ${{ toJson(github) }}, "check_id": ${{steps.hitl-check.outputs.check_id}}}
|
||||||
- name: Wait for startup
|
|
||||||
run: sleep 30
|
|
||||||
|
|
||||||
- uses: fountainhead/action-wait-for-check@v1.0.0
|
- uses: fountainhead/action-wait-for-check@v1.0.0
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -203,7 +203,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "derive_miniconf"
|
name = "derive_miniconf"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/quartiq/miniconf.git?rev=c8d819c#c8d819cdab65f18396e65dafa3558daea29e3031"
|
source = "git+https://github.com/quartiq/miniconf.git?rev=c6f2b28#c6f2b28f735e27b337eaa986846536e904c6f2bd"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -416,10 +416,9 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "miniconf"
|
name = "miniconf"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/quartiq/miniconf.git?rev=c8d819c#c8d819cdab65f18396e65dafa3558daea29e3031"
|
source = "git+https://github.com/quartiq/miniconf.git?rev=c6f2b28#c6f2b28f735e27b337eaa986846536e904c6f2bd"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_miniconf",
|
"derive_miniconf",
|
||||||
"heapless 0.6.1",
|
|
||||||
"serde",
|
"serde",
|
||||||
"serde-json-core",
|
"serde-json-core",
|
||||||
]
|
]
|
||||||
|
@ -689,8 +688,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde-json-core"
|
name = "serde-json-core"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
source = "git+https://github.com/rust-embedded-community/serde-json-core.git?rev=da460d1#da460d123e217f0e822a3977eb2170ed5d279d5e"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "39af17f40c2a28d2c9a7918663ddc8a10f54cc6f109ead5c3f010869761df186"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"heapless 0.6.1",
|
"heapless 0.6.1",
|
||||||
"ryu",
|
"ryu",
|
||||||
|
|
|
@ -56,7 +56,7 @@ version = "0.9.0"
|
||||||
|
|
||||||
[patch.crates-io.miniconf]
|
[patch.crates-io.miniconf]
|
||||||
git = "https://github.com/quartiq/miniconf.git"
|
git = "https://github.com/quartiq/miniconf.git"
|
||||||
rev = "c8d819c"
|
rev = "c6f2b28"
|
||||||
|
|
||||||
[dependencies.smoltcp-nal]
|
[dependencies.smoltcp-nal]
|
||||||
git = "https://github.com/quartiq/smoltcp-nal.git"
|
git = "https://github.com/quartiq/smoltcp-nal.git"
|
||||||
|
@ -66,10 +66,6 @@ rev = "8468f11"
|
||||||
git = "https://github.com/quartiq/minimq.git"
|
git = "https://github.com/quartiq/minimq.git"
|
||||||
rev = "b3f364d"
|
rev = "b3f364d"
|
||||||
|
|
||||||
[patch.crates-io.serde-json-core]
|
|
||||||
git = "https://github.com/rust-embedded-community/serde-json-core.git"
|
|
||||||
rev = "da460d1"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
semihosting = ["panic-semihosting", "cortex-m-log/semihosting"]
|
semihosting = ["panic-semihosting", "cortex-m-log/semihosting"]
|
||||||
bkpt = [ ]
|
bkpt = [ ]
|
||||||
|
|
Loading…
Reference in New Issue