Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Support building for multiple platforms with Ceedling.

License

Notifications You must be signed in to change notification settings

deltalejo/ceedling-platforms-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Platforms Ceedling Plugin

Support building for multiple platforms with Ceedling.

The plugin behaves very similar to the project:<name> option, but allows the extra project files to be inside some folder that can be specified, keeping your project root clean of .yml files if you are handling a lot of them.

Installation

Create a folder in your machine for Ceedling plugins if you do not have one already. e.g. ~/some/place/for/plugins:

$ mkdir -p ~/some/place/for/plugins

Get the plugin

cd into the plugins folder and clone this repo:

$ cd ~/some/place/for/plugins
$ git clone https://github.com/deltalejo/platforms-ceedling-plugin.git platforms

Enable the plugin

Add the plugins path to your project.yml to tell Ceedling where to find them if you have not done it yet. Then add platforms plugin to the enabled plugins list:

:plugins:
  :load_paths:
    - ~/some/place/for/plugins
  :enabled:
    - platforms

Usage

Add the folder(s) which contains (or will contain) the extra project files to your project.yml:

:project:
  :platforms_paths:
    - platforms

Put the extra project files inside the specified folder:

.
├── platforms
│   ├── platform-1.yml
│   ├── platform-2.yml
│   └── platform-3.yml
├── src
├── test
└── project.yml

Call Ceedling specifying the desired platform. e.g.:

$ ceedling platform:platform-1 test:all

About

Support building for multiple platforms with Ceedling.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages