Skip to content
package

GitHub Action

MPLABX6.04 and XC8 Compiler Action

v1.0.7 Latest version

MPLABX6.04 and XC8 Compiler Action

package

MPLABX6.04 and XC8 Compiler Action

This action builds a MPLAB X / XC8 project in a Linux container

Installation

Copy and paste the following snippet into your .yml file.

              

- name: MPLABX6.04 and XC8 Compiler Action

uses: aeraterta/[email protected]

Learn more about this action in aeraterta/mplab-xc8-action

Choose a version

Build with MPLAB X and XC8 GitHub Action

This action will build a MPLAB X / XC8 project.

It runs on Linux Ubuntu 20.04 and uses:

Inputs

project

Required The path of the project to build (relative to the repository). For example: firmware.X.

configuration

The configuration of the project to build. Defaults to default.

Example Usage

Add the following .github/workflows/build.yml file to your project:

name: Build
on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
jobs:
  build:
    name: Build the project
    runs-on: ubuntu-latest
    steps:
      - name: Download the source code
        uses: actions/checkout@v1
      - name: Build
        uses: Jaeraterta/[email protected]
        with:
          project: firmware.X
          configuration: default

Acknowledgements

Inspired by https://github.com/velocitek/ghactions-mplabx.
Forked from https://github.com/jeandeaual/mplabx-xc8-build-action.