summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.yaml1
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml8
-rw-r--r--.github/ISSUE_TEMPLATE/feature-request.yaml1
-rw-r--r--.github/workflows/main.yml11
4 files changed, 14 insertions, 7 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml
index f0fb076e..6e9f6606 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yaml
@@ -9,6 +9,7 @@ body:
*Please, before opening a bug report, check if similar issues already exist. In that case, use those issues to provide your feedback instead.*
- type: checkboxes
attributes:
+ label: Verification
options:
- label: I searched for similar bug reports and found none was relevant.
required: true
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..e5a555fd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,8 @@
+blank_issues_enabled: true
+contact_links:
+ - name: PineTime community chat (Matrix)
+ url: https://app.element.io/#/room/#pinetime:matrix.org
+ about: Please ask questions about PineTime here.
+ - name: PineTime developers chat (Matrix)
+ url: https://app.element.io/#/room/#pinetime-dev:matrix.org
+ about: Please ask questions about PineTime development here.
diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml
index 26e4fa0f..a35bbfed 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.yaml
+++ b/.github/ISSUE_TEMPLATE/feature-request.yaml
@@ -9,6 +9,7 @@ body:
*Please, before opening a feature request, check if similar issues already exist. In that case, use those issues to provide your feedback instead.*
- type: checkboxes
attributes:
+ label: Verification
options:
- label: I searched for similar feature request and found none was relevant.
required: true
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 3b753a37..58a63931 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -113,7 +113,7 @@ jobs:
run: |
mkdir -p build
cd build
- cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=${{ runner.temp }}/arm-none-eabi -DNRF5_SDK_PATH=${{ runner.temp }}/nrf5_sdk -DUSE_OPENOCD=1 -DBUILD_DFU=1 ../
+ cmake -G Ninja -DARM_NONE_EABI_TOOLCHAIN_PATH=${{ runner.temp }}/arm-none-eabi -DNRF5_SDK_PATH=${{ runner.temp }}/nrf5_sdk -DUSE_OPENOCD=1 -DBUILD_DFU=1 ../
#########################################################################################
# Make and Upload DFU Package
@@ -125,8 +125,7 @@ jobs:
- name: Make pinetime-mcuboot-app
run: |
- cd build
- make pinetime-mcuboot-app
+ cmake --build build --target pinetime-mcuboot-app
- name: Unzip DFU package
run: |
@@ -144,8 +143,7 @@ jobs:
- name: Make pinetime-app
run: |
- cd build
- make pinetime-app
+ cmake --build build --target pinetime-app
- name: Upload standalone firmware
uses: actions/upload-artifact@v2
@@ -158,8 +156,7 @@ jobs:
- name: Make pinetime-recovery
run: |
- cd build
- make pinetime-recovery
+ cmake --build build --target pinetime-recovery
#########################################################################################
# Finish