Skip to content

Merge pull request #2 from KopfLab/dev #9

Merge pull request #2 from KopfLab/dev

Merge pull request #2 from KopfLab/dev #9

# name of the job
name: Compile function
# specify which paths to watch for changes
on:
push:
paths:
- 'src/function/*'
- 'LoggerCore/src/*'
- .github/workflows/compile.yaml
- .github/workflows/compile-function.yaml
# run compile via the compile.yaml
jobs:
compile:
strategy:
fail-fast: false
matrix:
# CHANGE program/lib/aux as needed
program:
- src: 'function'
lib: ''
aux: 'LoggerCore/src/LoggerFunction* LoggerCore/src/LoggerModule*'
# 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
secrets: inherit
with:
platform: ${{ matrix.platform.name }}
version: ${{ matrix.platform.version }}
src: ${{ matrix.program.src }}
lib: ${{ matrix.program.lib }}
aux: ${{ matrix.program.aux }}