summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2022-05-02 12:26:30 +0300
committerJF <JF002@users.noreply.github.com>2022-05-27 17:52:26 +0200
commitcc2d5c39ceeba8a18c78fbd08534f13655f91f73 (patch)
tree26cc32586b44613e8d44842afb0c135df32caaa3 /.github/workflows
parentdd313eb419a51e67af3a891ba58cb2d74951508c (diff)
Cleanup workflows
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/lv_sim.yml12
-rw-r--r--.github/workflows/main.yml7
2 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/lv_sim.yml b/.github/workflows/lv_sim.yml
index 21b0cebf..45408bd1 100644
--- a/.github/workflows/lv_sim.yml
+++ b/.github/workflows/lv_sim.yml
@@ -1,24 +1,15 @@
# GitHub Actions Workflow to build Simulator for PineTime Smart Watch LVGL Interface
-# Name of this Workflow
name: Build PineTime LVGL Simulator
-# When to run this Workflow...
on:
-
- # Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
push:
branches: [ master, develop ]
-
- # Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
pull_request:
branches: [ master, develop ]
-# Steps to run for the Workflow
jobs:
build:
-
- # Run these steps on Ubuntu
runs-on: ubuntu-latest
steps:
@@ -64,9 +55,6 @@ jobs:
#########################################################################################
# Build and Upload simulator
- # For Debugging Builds: Remove "make" option "-j" for clearer output. Add "--trace" to see details.
- # For Faster Builds: Add "make" option "-j"
-
- name: Build simulator executable
run: |
cmake --build build_lv_sim
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index e4ef85a3..94d829a9 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -3,21 +3,14 @@
# Based on https://github.com/JF002/InfiniTime/blob/master/doc/buildAndProgram.md
# and https://github.com/JF002/InfiniTime/blob/master/bootloader/README.md
-# Name of this Workflow
name: Build PineTime Firmware
-# When to run this Workflow...
on:
-
- # Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
push:
branches: [ master, develop ]
-
- # Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
pull_request:
branches: [ master, develop ]
-# Steps to run for the Workflow
jobs:
build:
runs-on: ubuntu-latest