This repository is for the GitHub Action to run arduino_ci
on a repository containing an Arduino library. You can also run it locally with Docker, right now, if that's easier -- see below.
examples/
directory are compiled automatically, to detect broken code in the default brancharduino-lint
action for verifying metadata (e.g. library.properties
) and structural aspects of a library.github/workflows
directory, e.g. .github/workflows/arduino_ci.yml
There are several ways to specify what version of the action to run.
Value foruses:
Meaning Pros Cons Arduino-CI/action@v0.1.6
exact version Complete control Adopt new versions manually, which may be tiresome if you have many libraries Arduino-CI/action@latest
bleeding-edge unreleased arduino_ci
version Receive latest features & fixes automatically High risk of encountering breaking changes or new bugs Arduino-CI/action@stable-1.x
use highest available arduino_ci
version that is < 2.0.0
Receive latest features & fixes automatically, but avoids breaking changes Not a 100% guarantee against unintended CI changes
Using Arduino-CI/action@stable-1.x
is recommended, so the contents listed below for .github/workflows/arduino_ci.yml
should work for most users.
--- name: Arduino_CI on: [pull_request] jobs: arduino_ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: Arduino-CI/action@stable-1.x
The full set of configuration options for the action is enumerated here; note that if the env:
section is empty, it must be commented out or deleted as well.
--- name: Arduino_CI on: [pull_request] jobs: arduino_ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: Arduino-CI/action@stable-1.x # or latest, or a pinned version env: # Not all libraries are in the root directory of a repository. # Specifying the path of the library here (relative to the root # of the repository) will adjust that. # # The default is the current directory # USE_SUBDIR: . # Not all libraries include examples or unit tests. The default # behavior of arduino_ci is to assume that "if the files don't # exist, then they were not MEANT to exist". In other words, # if you were to accidentally delete all your tests or example # sketches, then the CI runner would by default assume that was # intended and return a passing result. # # If you'd rather have the test runner fail the test in the # absence of either tests or examples, uncommenting either of # the following variables to 'true' (as appropriate) will # enforce that. # EXPECT_EXAMPLES: false EXPECT_UNITTESTS: false # Although dependencies will be installed automatically via the # library manager, your library under test may require an # unofficial version of a dependency. In those cases, the custom # libraries must be insalled prior to the test execution; those # installation commands should be placed in a shell script (that # will be executed by /bin/sh) stored in your library. # # Then, set this variable to the path to that file (relative to # the root of your repository). The script will be run from # within the Arduino libraries directory; you should NOT attempt # to find that directory nor change to it from within the script. # # CUSTOM_INIT_SCRIPT: install_dependencies.sh
You can show Arduino CI status with a badge in your repository README.md
[](https://github.com/marketplace/actions/arduino_ci)
Configuring Behavior of the Arduino CI Test Runner ItselfNote that
- you must replace
<OWNER>
with your GitHub username- you must replace
<REPOSITORY>
with the name of the GitHub repositoryArduino_CI
in the URL must match thename: Arduino_CI
line in the example YAML files above
When configuring the test runner itself, it's more efficient to run arduino_ci
locally -- it works on the same OSes as the Arduino IDE. Instructions for setting that up can be found at the arduino_ci
project homepage on GitHub. If you are using OSX or Linux, you have the additional option of running Arduino CI directly from Docker -- see below.
For information on Arduino unit testing with arduino_ci
, see the REFERENCE.md
for Arduino CI's section on unit testing
By default, any unit tests and example sketches are tested against a modest set of Arduino platforms. If you have architectures defined in library.properties
, that will further refine the set of what is tested. You can further override this configuration in several specific ways; for details, see the REFERENCE.md
for Arduino CI's section on CI configuration
The default configuration is available in the arduino_ci
project, and shows how the platforms and packages are configured (including 3rd-party board provider information).
The same Docker image used by the GitHub action is available for local testing, and should function properly on Linux and OSX hosts with Docker installed. Choose the command that best matches the state of your project, and use the `-
Your Arduino Libraries directory has everything set up just right; you just want to get up and running and not worry about dependencies at all Component Path Arduino's "libraries" directory/pathTo/Arduino/libraries
Your library under test, called mylib
/pathTo/Arduino/libraries/mylib
A custom library mylib
depends on /pathTo/Arduino/libraries/custom
In this situation, you've got a mix of libraries installed locally (the one that will be tested amongst any possible dependencies), and they all work as expected (even though you're not quite sure all of them are up to date, nor whether they have local modifications that aren't part of the official library release). This setup won't work in CI, but by volume-mounting the libraries directory into the container and using your own library as the working directory, you can ensure that arduino_ci is using the exact same set of dependencies.
This is also the fastest way to test new versions of dependencies.
You would run the following (substituting your own library's name in place of mylib
):
docker run --rm \ -v "/pathTo/Arduino/libraries:/root/Arduino/libraries" \ --workdir /root/Arduino/libraries/mylib \ docker.pkg.github.com/arduino-ci/action/ubuntuYour Arduino Library uses only "official" library versions as dependencies Component Path Arduino's "libraries" directory
/pathTo/Arduino/libraries
Your library under test, called mylib
/pathTo/Arduino/libraries/mylib
In this situation, the only libraries you need for your library to work are those that you've downloaded directly from the library manager and no special modifications need to be made. We simply volume mount the library under test into the container, set that directory to be the working directory, and let the arduino_ci
test runner install the dependencies directly.
If your project does not include a library.properties
that defines your project's name, you should change library_under_test
to mylib
.
docker run --rm \ -v "/pathTo/Arduino/libraries/mylib:/library_under_test" \ --workdir /library_under_test \ docker.pkg.github.com/arduino-ci/action/ubuntuYour Arduino Library uses libraries or versions as dependencies that can't be installed by name from the Arduino library manager (but you wrote a script to install them automatically) Component Path Arduino's "libraries" directory
/pathTo/Arduino/libraries
Your library under test, called mylib
/pathTo/Arduino/libraries/mylib
Shell script to install custom
library /pathTo/Arduino/libraries/mylib/install.sh
A custom library mylib
depends on /pathTo/Arduino/libraries/custom
In this situation, you have a custom library that can't be installed by the library manager. Fortunately, you've supplied an install.sh
script that will download and unpack a library to the current working directory (which Arduino CI's test runner will run from inside the container's Arduino libraries directory). Note the relative path used for install.sh
.
docker run --rm \ -v "/pathTo/Arduino/libraries/mylib:/library_under_test" \ --workdir /library_under_test \ --env CUSTOM_INIT_SCRIPT=install.sh \ docker.pkg.github.com/arduino-ci/action/ubuntuYour Arduino Library is a subdirectory of a monorepo, you need libraries or versions as dependencies that can't be installed by name from the Arduino library manager, you wrote a script to install them automatically Component Path Arduino's "libraries" directory
/pathTo/Arduino/libraries
A custom library mylib
depends on /pathTo/Arduino/libraries/custom
Your library under test, called mylib
/pathTo/Monorepo/mylib
Shell script to install custom
library /pathTo/Monorepo/mylib/install.sh
All the bells and whistles. Note that the relative path of install.sh
is considered after the USE_SUBDIR
directory has been applied.
docker run --rm \ -v "/pathTo/Monorepo:/library_under_test" \ --workdir /library_under_test \ --env USE_SUBDIR=mylib \ --env CUSTOM_INIT_SCRIPT=install.sh \ docker.pkg.github.com/arduino-ci/action/ubuntu
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4