Skip to content

Commit 24e6edd

Browse files
authored
Merge pull request #413 from per1234/ci
Use GitHub Actions for continuous integration
2 parents 1ac42f7 + 20dc2e5 commit 24e6edd

File tree

39 files changed

+373
-78
lines changed

39 files changed

+373
-78
lines changed

.codespellrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See: https://github.com/codespell-project/codespell#using-a-config-file
2+
[codespell]
3+
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
4+
ignore-words-list = hart,pullrequest
5+
check-filenames =
6+
check-hidden =
7+
skip = ./.git,./firmwares/arduinoISP,./firmwares/wifishield,./bootloaders

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#about-the-dependabotyml-file
2+
version: 2
3+
4+
updates:
5+
# Configure check for outdated GitHub Actions actions in workflows.
6+
# See: https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
7+
- package-ecosystem: github-actions
8+
directory: / # Check the repository's workflows under /.github/workflows/
9+
schedule:
10+
interval: daily

.github/workflows/check-arduino.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Check Arduino
2+
3+
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
4+
on:
5+
push:
6+
pull_request:
7+
schedule:
8+
# Run every Tuesday at 8 AM UTC to catch breakage caused by new rules added to Arduino Lint.
9+
- cron: "0 8 * * TUE"
10+
workflow_dispatch:
11+
repository_dispatch:
12+
13+
jobs:
14+
lint:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
20+
21+
- name: Arduino Lint
22+
uses: arduino/arduino-lint-action@v1
23+
with:
24+
compliance: specification
25+
# Always use this setting for official repositories. Remove for 3rd party projects.
26+
official: true
27+
project-type: platform
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
name: Compile Examples
2+
3+
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
4+
on:
5+
push:
6+
paths:
7+
- ".github/workflows/compile-platform-examples.ya?ml"
8+
- "cores/**"
9+
- "libraries/**"
10+
- "variants/**"
11+
- "boards.txt"
12+
- "platform.txt"
13+
pull_request:
14+
paths:
15+
- ".github/workflows/compile-platform-examples.ya?ml"
16+
- "cores/**"
17+
- "libraries/**"
18+
- "variants/**"
19+
- "boards.txt"
20+
- "platform.txt"
21+
workflow_dispatch:
22+
repository_dispatch:
23+
24+
jobs:
25+
build:
26+
name: ${{ matrix.board.fqbn }}
27+
runs-on: ubuntu-latest
28+
29+
env:
30+
SKETCHES_REPORTS_PATH: sketches-reports
31+
32+
strategy:
33+
fail-fast: false
34+
35+
matrix:
36+
board:
37+
- fqbn: arduino:avr:yun
38+
serial: true
39+
softwareserial: true
40+
- fqbn: arduino:avr:uno
41+
serial: true
42+
softwareserial: true
43+
- fqbn: arduino:avr:diecimila:cpu=atmega328
44+
serial: true
45+
softwareserial: true
46+
- fqbn: arduino:avr:diecimila:cpu=atmega168
47+
serial: true
48+
softwareserial: true
49+
- fqbn: arduino:avr:nano:cpu=atmega328
50+
serial: true
51+
softwareserial: true
52+
- fqbn: arduino:avr:nano:cpu=atmega328old
53+
serial: true
54+
softwareserial: true
55+
- fqbn: arduino:avr:nano:cpu=atmega168
56+
serial: true
57+
softwareserial: true
58+
- fqbn: arduino:avr:mega:cpu=atmega2560
59+
serial: true
60+
softwareserial: true
61+
- fqbn: arduino:avr:mega:cpu=atmega1280
62+
serial: true
63+
softwareserial: true
64+
- fqbn: arduino:avr:megaADK
65+
serial: true
66+
softwareserial: true
67+
- fqbn: arduino:avr:leonardo
68+
serial: true
69+
softwareserial: true
70+
- fqbn: arduino:avr:leonardoeth
71+
serial: true
72+
softwareserial: true
73+
- fqbn: arduino:avr:micro
74+
serial: true
75+
softwareserial: true
76+
- fqbn: arduino:avr:esplora
77+
serial: true
78+
softwareserial: true
79+
- fqbn: arduino:avr:mini:cpu=atmega328
80+
serial: true
81+
softwareserial: true
82+
- fqbn: arduino:avr:mini:cpu=atmega168
83+
serial: true
84+
softwareserial: true
85+
- fqbn: arduino:avr:ethernet
86+
serial: true
87+
softwareserial: true
88+
- fqbn: arduino:avr:fio
89+
serial: true
90+
softwareserial: true
91+
- fqbn: arduino:avr:bt:cpu=atmega328
92+
serial: true
93+
softwareserial: true
94+
- fqbn: arduino:avr:bt:cpu=atmega168
95+
serial: true
96+
softwareserial: true
97+
- fqbn: arduino:avr:LilyPadUSB
98+
serial: true
99+
softwareserial: true
100+
- fqbn: arduino:avr:lilypad:cpu=atmega328
101+
serial: true
102+
softwareserial: true
103+
- fqbn: arduino:avr:lilypad:cpu=atmega168
104+
serial: true
105+
softwareserial: true
106+
- fqbn: arduino:avr:pro:cpu=16MHzatmega328
107+
serial: true
108+
softwareserial: true
109+
- fqbn: arduino:avr:pro:cpu=8MHzatmega328
110+
serial: true
111+
softwareserial: true
112+
- fqbn: arduino:avr:pro:cpu=16MHzatmega168
113+
serial: true
114+
softwareserial: true
115+
- fqbn: arduino:avr:pro:cpu=8MHzatmega168
116+
serial: true
117+
softwareserial: true
118+
- fqbn: arduino:avr:atmegang:cpu=atmega168
119+
serial: true
120+
softwareserial: true
121+
- fqbn: arduino:avr:atmegang:cpu=atmega8
122+
serial: true
123+
softwareserial: false
124+
- fqbn: arduino:avr:robotControl
125+
serial: true
126+
softwareserial: false
127+
- fqbn: arduino:avr:robotMotor
128+
serial: true
129+
softwareserial: false
130+
- fqbn: arduino:avr:gemma
131+
serial: false
132+
softwareserial: false
133+
- fqbn: arduino:avr:circuitplay32u4cat
134+
serial: true
135+
softwareserial: true
136+
- fqbn: arduino:avr:yunmini
137+
serial: true
138+
softwareserial: true
139+
- fqbn: arduino:avr:chiwawa
140+
serial: true
141+
softwareserial: true
142+
- fqbn: arduino:avr:one
143+
serial: true
144+
softwareserial: true
145+
- fqbn: arduino:avr:unowifi
146+
serial: true
147+
softwareserial: true
148+
149+
# Make board type-specific customizations to the matrix jobs
150+
include:
151+
- board:
152+
# Boards with Serial interface
153+
serial: true
154+
# Compile these sketches in addition to the ones compiled for all boards
155+
serial-sketch-paths: |
156+
- libraries/EEPROM/examples/eeprom_crc
157+
- libraries/EEPROM/examples/eeprom_get
158+
- libraries/EEPROM/examples/eeprom_put
159+
- libraries/EEPROM/examples/eeprom_read
160+
- libraries/SPI
161+
- libraries/Wire
162+
- board:
163+
serial: false
164+
serial-sketch-paths: ""
165+
- board:
166+
# Boards compatible with the SoftwareSerial library
167+
softwareserial: true
168+
softwareserial-sketch-paths: |
169+
- libraries/SoftwareSerial
170+
- board:
171+
softwareserial: false
172+
softwareserial-sketch-paths: ""
173+
174+
steps:
175+
- name: Checkout repository
176+
uses: actions/checkout@v2
177+
178+
- name: Compile examples
179+
uses: arduino/compile-sketches@v1
180+
with:
181+
github-token: ${{ secrets.GITHUB_TOKEN }}
182+
fqbn: ${{ matrix.board.fqbn }}
183+
platforms: |
184+
# Use Boards Manager to install the latest release of the platform to get the toolchain.
185+
- name: arduino:avr
186+
# Overwrite the Boards Manager installation with the platform from the repository.
187+
- source-path: ./
188+
name: arduino:avr
189+
sketch-paths: |
190+
# Compile these sketches for all boards
191+
- libraries/EEPROM/examples/eeprom_clear
192+
- libraries/EEPROM/examples/eeprom_iteration
193+
- libraries/EEPROM/examples/eeprom_update
194+
- libraries/EEPROM/examples/eeprom_write
195+
# Board-specific sketches
196+
${{ matrix.serial-sketch-paths }}
197+
${{ matrix.softwareserial-sketch-paths }}
198+
enable-deltas-report: true
199+
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
200+
201+
- name: Save sketches report as workflow artifact
202+
uses: actions/upload-artifact@v2
203+
with:
204+
if-no-files-found: error
205+
path: ${{ env.SKETCHES_REPORTS_PATH }}
206+
name: ${{ env.SKETCHES_REPORTS_PATH }}
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Report Size Deltas
2+
3+
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
4+
on:
5+
push:
6+
paths:
7+
- ".github/workflows/report-size-deltas.yml"
8+
schedule:
9+
# Run at the minimum interval allowed by GitHub Actions.
10+
# Note: GitHub Actions periodically has outages which result in workflow failures.
11+
# In this event, the workflows will start passing again once the service recovers.
12+
- cron: "*/5 * * * *"
13+
workflow_dispatch:
14+
repository_dispatch:
15+
16+
jobs:
17+
report:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Comment size deltas reports to PRs
21+
uses: arduino/report-size-deltas@v1
22+
with:
23+
# The name of the workflow artifact created by the sketch compilation workflow
24+
sketches-reports-source: sketches-reports

.github/workflows/spell-check.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Spell Check
2+
3+
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
4+
on:
5+
push:
6+
pull_request:
7+
schedule:
8+
# Run every Tuesday at 8 AM UTC to catch new misspelling detections resulting from dictionary updates.
9+
- cron: "0 8 * * TUE"
10+
workflow_dispatch:
11+
repository_dispatch:
12+
13+
jobs:
14+
spellcheck:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
20+
21+
- name: Spell check
22+
uses: codespell-project/actions-codespell@master

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Arduino AVR Boards
2+
3+
[![Check Arduino status](https://github.com/arduino/ArduinoCore-avr/actions/workflows/check-arduino.yml/badge.svg)](https://github.com/arduino/ArduinoCore-avr/actions/workflows/check-arduino.yml)
4+
[![Compile Examples status](https://github.com/arduino/ArduinoCore-avr/actions/workflows/compile-platform-examples.yml/badge.svg)](https://github.com/arduino/ArduinoCore-avr/actions/workflows/compile-platform-examples.yml)
5+
[![Spell Check status](https://github.com/arduino/ArduinoCore-avr/actions/workflows/spell-check.yml/badge.svg)](https://github.com/arduino/ArduinoCore-avr/actions/workflows/spell-check.yml)
6+
7+
This repository contains the source code and configuration files of the Arduino AVR Boards
8+
[platform](https://arduino.github.io/arduino-cli/latest/platform-specification/).

cores/arduino/HardwareSerial.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ void HardwareSerial::flush()
219219
_tx_udr_empty_irq();
220220
}
221221
// If we get here, nothing is queued anymore (DRIE is disabled) and
222-
// the hardware finished tranmission (TXC is set).
222+
// the hardware finished transmission (TXC is set).
223223
}
224224

225225
size_t HardwareSerial::write(uint8_t c)

cores/arduino/HardwareSerial.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
// using a ring buffer (I think), in which head is the index of the location
3333
// to which to write the next incoming character and tail is the index of the
3434
// location from which to read.
35-
// NOTE: a "power of 2" buffer size is reccomended to dramatically
35+
// NOTE: a "power of 2" buffer size is recommended to dramatically
3636
// optimize all the modulo operations for ring buffers.
3737
// WARNING: When buffer sizes are increased to > 256, the buffer index
3838
// variables are automatically increased in size, but the extra

cores/arduino/HardwareSerial_private.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#endif
6464
#endif // !defined TXC0
6565

66-
// Check at compiletime that it is really ok to use the bit positions of
66+
// Check at compile time that it is really ok to use the bit positions of
6767
// UART0 for the other UARTs as well, in case these values ever get
6868
// changed for future hardware.
6969
#if defined(TXC1) && (TXC1 != TXC0 || RXEN1 != RXEN0 || RXCIE1 != RXCIE0 || \

cores/arduino/Print.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Print
5959
}
6060

6161
// default to zero, meaning "a single write may block"
62-
// should be overriden by subclasses with buffering
62+
// should be overridden by subclasses with buffering
6363
virtual int availableForWrite() { return 0; }
6464

6565
size_t print(const __FlashStringHelper *);

cores/arduino/Stream.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <inttypes.h>
2626
#include "Print.h"
2727

28-
// compatability macros for testing
28+
// compatibility macros for testing
2929
/*
3030
#define getInt() parseInt()
3131
#define getInt(ignore) parseInt(ignore)

cores/arduino/USBAPI.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ typedef unsigned long u32;
3232

3333
#include "Arduino.h"
3434

35-
// This definitions is usefull if you want to reduce the EP_SIZE to 16
35+
// This definitions is useful if you want to reduce the EP_SIZE to 16
3636
// at the moment only 64 and 16 as EP_SIZE for all EPs are supported except the control endpoint
3737
#ifndef USB_EP_SIZE
3838
#define USB_EP_SIZE 64

cores/arduino/WString.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class String
9595

9696
// returns true on success, false on failure (in which case, the string
9797
// is left unchanged). if the argument is null or invalid, the
98-
// concatenation is considered unsucessful.
98+
// concatenation is considered unsuccessful.
9999
unsigned char concat(const String &str);
100100
unsigned char concat(const char *cstr);
101101
unsigned char concat(char c);
@@ -152,7 +152,7 @@ class String
152152
unsigned char startsWith(const String &prefix, unsigned int offset) const;
153153
unsigned char endsWith(const String &suffix) const;
154154

155-
// character acccess
155+
// character access
156156
char charAt(unsigned int index) const;
157157
void setCharAt(unsigned int index, char c);
158158
char operator [] (unsigned int index) const;

cores/arduino/new.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "new.h"
2020

21-
// The C++ spec dicates that allocation failure should cause the
21+
// The C++ spec dictates that allocation failure should cause the
2222
// (non-nothrow version of the) operator new to throw an exception.
2323
// Since we expect to have exceptions disabled, it would be more
2424
// appropriate (and probably standards-compliant) to terminate instead.

0 commit comments

Comments
 (0)