Skip to content

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

Add Pelles-C compilation to CI on GitHub Actions

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

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"

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
POLINK: "C:\Program Files\PellesC\bin\plink.exe"
run: cd test && make -f Makefile.pelles