Cleanup workflows
This commit is contained in:
parent
dd313eb419
commit
cc2d5c39ce
12
.github/workflows/lv_sim.yml
vendored
12
.github/workflows/lv_sim.yml
vendored
|
@ -1,24 +1,15 @@
|
||||||
# GitHub Actions Workflow to build Simulator for PineTime Smart Watch LVGL Interface
|
# GitHub Actions Workflow to build Simulator for PineTime Smart Watch LVGL Interface
|
||||||
|
|
||||||
# Name of this Workflow
|
|
||||||
name: Build PineTime LVGL Simulator
|
name: Build PineTime LVGL Simulator
|
||||||
|
|
||||||
# When to run this Workflow...
|
|
||||||
on:
|
on:
|
||||||
|
|
||||||
# Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
|
|
||||||
push:
|
push:
|
||||||
branches: [ master, develop ]
|
branches: [ master, develop ]
|
||||||
|
|
||||||
# Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, develop ]
|
branches: [ master, develop ]
|
||||||
|
|
||||||
# Steps to run for the Workflow
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
# Run these steps on Ubuntu
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -64,9 +55,6 @@ jobs:
|
||||||
#########################################################################################
|
#########################################################################################
|
||||||
# Build and Upload simulator
|
# 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
|
- name: Build simulator executable
|
||||||
run: |
|
run: |
|
||||||
cmake --build build_lv_sim
|
cmake --build build_lv_sim
|
||||||
|
|
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -3,21 +3,14 @@
|
||||||
# Based on https://github.com/JF002/InfiniTime/blob/master/doc/buildAndProgram.md
|
# Based on https://github.com/JF002/InfiniTime/blob/master/doc/buildAndProgram.md
|
||||||
# and https://github.com/JF002/InfiniTime/blob/master/bootloader/README.md
|
# and https://github.com/JF002/InfiniTime/blob/master/bootloader/README.md
|
||||||
|
|
||||||
# Name of this Workflow
|
|
||||||
name: Build PineTime Firmware
|
name: Build PineTime Firmware
|
||||||
|
|
||||||
# When to run this Workflow...
|
|
||||||
on:
|
on:
|
||||||
|
|
||||||
# Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
|
|
||||||
push:
|
push:
|
||||||
branches: [ master, develop ]
|
branches: [ master, develop ]
|
||||||
|
|
||||||
# Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, develop ]
|
branches: [ master, develop ]
|
||||||
|
|
||||||
# Steps to run for the Workflow
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue
Block a user