Skip to content

Commit 9a402f9

Browse files
authored
schema changes (#26)
* [ci] fix workflow gpg * some minor cleanups for sanity. named enums * start migrations, maybe * device state migration too * migration cleanup * more cleanup * clear stale renders * adding helpful logs to migration * ui footer change * try adding some more logging for help * more logging * loggin tweaks * more logging * debug -> trace in google logs * bump batch size. needs conf var * tiny newrelic reporting; job queue length * dependency updates + root cleanup * add another event * passing at job debounce/throttle * diagnostic ingestion event * add event day headers
1 parent edbee25 commit 9a402f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1852
-705
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
env:
4444
BEETLE_GPG_KEY: "${{ secrets.BEETLE_CI_GPG }}"
45+
BEETLE_GPG_KEY_ID: "${{ secrets.BEETLE_CI_GPG_KEY_ID }}"
4546
REDIS_HOST: "${{ secrets.PIO_REDIS_HOST }}"
4647
REDIS_PORT: "${{ secrets.PIO_REDIS_PORT }}"
4748
REDIS_AUTH_USERNAME: "${{ secrets.PIO_REDIS_AUTH_USERNAME }}"
@@ -84,25 +85,25 @@ jobs:
8485

8586
- name: "bundle(firebeetle): copy-bin"
8687
run: |
87-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
88+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
8889
$DISTRIBUTABLE_DIRECTORY_NAME/firebeetle/firmware.bin.pgp \
8990
.pio/build/firebeetle/firmware.bin
9091
9192
- name: "bundle(firebeetle): copy-map"
9293
run: |
93-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
94+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
9495
$DISTRIBUTABLE_DIRECTORY_NAME/firebeetle/firmware.map.pgp \
9596
.pio/build/firebeetle/firmware.map
9697
9798
- name: "bundle(firebeetle): copy-elf"
9899
run: |
99-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
100+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
100101
$DISTRIBUTABLE_DIRECTORY_NAME/firebeetle/firmware.elf.pgp \
101102
.pio/build/firebeetle/firmware.elf
102103
103104
- name: "bundle(firebeetle): copy-partitions"
104105
run: |
105-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
106+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
106107
$DISTRIBUTABLE_DIRECTORY_NAME/firebeetle/partitions.bin.pgp \
107108
.pio/build/firebeetle/partitions.bin
108109
@@ -120,25 +121,25 @@ jobs:
120121

121122
- name: "bundle(xiao): copy-bin"
122123
run: |
123-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
124+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
124125
$DISTRIBUTABLE_DIRECTORY_NAME/xiao/firmware.bin.pgp \
125126
.pio/build/xiao/firmware.bin
126127
127128
- name: "bundle(xiao): copy-map"
128129
run: |
129-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
130+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
130131
$DISTRIBUTABLE_DIRECTORY_NAME/xiao/firmware.map.pgp \
131132
.pio/build/xiao/firmware.map
132133
133134
- name: "bundle(xiao): copy-elf"
134135
run: |
135-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
136+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
136137
$DISTRIBUTABLE_DIRECTORY_NAME/xiao/firmware.elf.pgp \
137138
.pio/build/xiao/firmware.elf
138139
139140
- name: "bundle(xiao): copy-partitions"
140141
run: |
141-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
142+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
142143
$DISTRIBUTABLE_DIRECTORY_NAME/xiao/partitions.bin.pgp \
143144
.pio/build/xiao/partitions.bin
144145
@@ -149,7 +150,7 @@ jobs:
149150
ls -lah $HOME/.platformio/packages/framework-arduinoespressif32
150151
ls -lah $HOME/.platformio/packages/framework-arduinoespressif32/tools
151152
ls -lah $HOME/.platformio/packages/framework-arduinoespressif32/tools/partitions
152-
gpg --trust-model always -e -r 99D22D47AA5053FC -o \
153+
gpg --trust-model always -e -r $BEETLE_GPG_KEY_ID -o \
153154
$DISTRIBUTABLE_DIRECTORY_NAME/xiao/boot_app0.bin.pgp \
154155
$HOME/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin
155156

0 commit comments

Comments
 (0)