Skip to content

Add Pelles-C compilation to CI on GitHub Actions #6

Add Pelles-C compilation to CI on GitHub Actions

Add Pelles-C compilation to CI on GitHub Actions #6

Workflow file for this run

on:
push:
branches-ignore:
- 'ci/**'
- '!ci/gha**'
- 'dependabot/**'
pull_request:
branches:
- 'master'
jobs:
pelles:
runs-on: windows-latest
strategy:
matrix:
version:
- "12.0.2"
# - "11.0.2"
# - "10.0.6"
# - "9.00.0.0"
# - "8.00.0.0"
steps:
- uses: actions/checkout@v2
- name: Install Pelles
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install pelles-c --version "${{ matrix.version }}"
- name: Install Make
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install make
- name: Compile
env:
POCC: 'C:\Program Files\PellesC\bin\pocc.exe'
POLINK: 'C:\Program Files\PellesC\\bin\\plink.exe'
working-directory: test
run: make -f Makefile.pelles