diff options
| -rw-r--r-- | .github/workflows/main.yml | 8 | ||||
| -rw-r--r-- | doc/code/Apps.md | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bd24359a..3b753a37 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -153,6 +153,14 @@ jobs: name: pinetime-app.out path: build/src/pinetime-app*.out + ######################################################################################### + # Make but don't Upload the Recovery Firmware to be sure it builds correctly + + - name: Make pinetime-recovery + run: | + cd build + make pinetime-recovery + ######################################################################################### # Finish diff --git a/doc/code/Apps.md b/doc/code/Apps.md index b3bab042..7c2d7a05 100644 --- a/doc/code/Apps.md +++ b/doc/code/Apps.md @@ -51,14 +51,14 @@ MyApp.h: #include "displayapp/screens/Screen.h" #include <lvgl/lvgl.h> -namespace PineTime { +namespace Pinetime { namespace Applications { namespace Screens { class MyApp : public Screen { public: MyApp(DisplayApp* app); ~MyApp() override; - } + }; } } } |
