Skip to content

fix blink compilation in cloud #6

fix blink compilation in cloud

fix blink compilation in cloud #6

Workflow file for this run

# name of the job
name: Compile oled
# specify which paths to watch for changes
on:
push:
paths:
- 'src/oled/*'
- .github/workflows/compile.yaml
- .github/workflows/compile-oled.yaml
# run compile via the compile.yaml
jobs:
compile:
strategy:
fail-fast: false
matrix:
# CHANGE program/lib/aux as needed
program:
- src: 'oled'
lib: 'Adafruit_SSD1306_RK/src Adafruit_GFX_RK/src Adafruit_BusIO_RK/src'
aux: ''
# CHANGE platforms as needed
platform:
- {name: 'p2', version: '6.3.2'}
# program name
name: ${{ matrix.program.src }}-${{ matrix.platform.name }}-${{ matrix.platform.version }}
# workflow call
uses: ./.github/workflows/compile.yaml

Check failure on line 31 in .github/workflows/compile-oled.yaml

View workflow run for this annotation

GitHub Actions / Compile oled

Invalid workflow file

The workflow is not valid. .github/workflows/compile-oled.yaml (Line: 31, Col: 11): Input program is required, but not provided while calling.
secrets: inherit
with:
platform: ${{ matrix.platform.name }}
version: ${{ matrix.platform.version }}
src: ${{ matrix.program.src }}
lib: ${{ matrix.program.lib }}
aux: ${{ matrix.program.aux }}