Skip to content

Purely internal testing #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
30 changes: 2 additions & 28 deletions .github/workflows/compile_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,36 +58,11 @@ jobs:
platforms: |
- name: arduino:avr
internalid: arduino_avr # This is just some unique id string we assign for use in the artifact name (fqbn does not qualify due to containing colons)
- fqbn: esp8266:esp8266:huzzah
type: 8266
platforms: |
- name: esp8266:esp8266
source-url: https://arduino.esp8266.com/stable/package_esp8266com_index.json
internalid: esp8266
- fqbn: STMicroelectronics:stm32:GenF1:pnum=BLUEPILL_F103C8
platforms: |
- name: STMicroelectronics:stm32
source-url: https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
internalid: stm32_official
- fqbn: arduino:mbed_giga:giga
platforms: |
- name: arduino:mbed_giga
internalid: arduino_giga
# SAMD boards. There is also an Adrafruit fork of this core, and the two seem to have diverged, considerably. I have no idea on the differences.
- fqbn: arduino:samd:adafruit_circuitplayground_m0
platforms: |
- name: arduino:samd
internalid: arduino_samd
- fqbn: rp2040:rp2040:rpipico
type: rp2040
platforms: |
- name: rp2040:rp2040
source-url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
internalid: rp2040
- fqbn: arduino:renesas_uno:minima
platforms: |
- name: arduino:renesas_uno
internalid: arduino_unor4

steps:
- name: Checkout repository
Expand All @@ -102,14 +77,13 @@ jobs:
# limit to only some sketches for now, while figuring out the workflow
sketch-paths: |
- examples/01.Basics
- examples/02.Control
- examples/06.Synthesis
libraries: |
- source-path: ./
- name: PinChangeInterrupt
- name: MIDI Library
- name: Arduino_AdvancedAnalog
enable-deltas-report: true
enable-warnings-report: true
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}

- name: Save sketches report as workflow artifact
Expand All @@ -134,6 +108,6 @@ jobs:
merge-multiple: true
path: ${{ env.SKETCHES_REPORTS_PATH }}

- uses: arduino/report-size-deltas@v1
- uses: tfry-git/report-size-deltas@warnings
with:
sketches-reports-source: ${{ env.SKETCHES_REPORTS_PATH }}
2 changes: 2 additions & 0 deletions MozziGuts.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#include <ADC.h>
#endif

#warning This warning is purely for testing

#include "mozzi_analog.h"

#if not defined (CONTROL_RATE)
Expand Down