Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
name: STM32 Core Continuous Integration
name: STM32 Core build using arduino-cli
on:
push:
branches:
- main
paths-ignore:
- .github/**
- '!.github/workflows/Continuous-Integration.yml'
- '!.github/workflows/Arduino-build.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- '!CI/build/arduino-cli.py'
- '!CI/build/platformio-builder.py'
- '!CI/build/examples/**'
- cmake/**
- tools/**
- '!tools/platformio-build.py'
pull_request:
paths-ignore:
- .github/**
- '!.github/workflows/Continuous-Integration.yml'
- '!.github/workflows/Arduino-build.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- '!CI/build/arduino-cli.py'
- '!CI/build/platformio-builder.py'
- '!CI/build/examples/**'
- cmake/**
- tools/**
- '!tools/platformio-build.py'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Expand All @@ -51,14 +49,3 @@ jobs:
run: |
cat ${{ steps.Compile.outputs.compile-result }}
exit 1
pio_build:
runs-on: ubuntu-latest
name: PlatformIO test
steps:
# First of all, clone the repo using the checkout action.
- name: Checkout
uses: actions/checkout@main

- name: PlatformIO
id: Compile
uses: ./.github/actions/pio-build
16 changes: 16 additions & 0 deletions .github/workflows/Cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ on:
push:
branches:
- main
paths-ignore:
- .github/**
- '!.github/workflows/Cmake.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- tools/**
pull_request:
paths-ignore:
- .github/**
- '!.github/workflows/Arduino-build.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- tools/**
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/PIO-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: PlatformIO build
on:
push:
branches:
- main
paths-ignore:
- .github/**
- '!.github/actions/pio-build/**'
- '!.github/workflows/PIO-build.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- '!CI/build/platformio-builder.py'
- cmake/**
- tools/**
- '!tools/platformio-build.py'
pull_request:
paths-ignore:
- .github/**
- '!.github/actions/pio-build/**'
- '!.github/workflows/PIO-build.yml'
- '*.json'
- '**.md'
- keywords.txt
- CI/**
- '!CI/build/platformio-builder.py'
- cmake/**
- tools/**
- '!tools/platformio-build.py'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pio_build:
runs-on: ubuntu-latest
name: PlatformIO test
steps:
# First of all, clone the repo using the checkout action.
- name: Checkout
uses: actions/checkout@main

- name: PlatformIO
id: Compile
uses: ./.github/actions/pio-build