-
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 1.2 KB
/
build_lirc_converter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: "lirc_converter: Build and lint"
on:
push:
branches: [ master ]
paths:
- ".github/workflows/build_lirc_converter.yaml"
- "tools/apps/lirc_converter/**"
pull_request:
branches: [ master ]
paths:
- ".github/workflows/build_lirc_converter.yaml"
- "tools/apps/lirc_converter/**"
workflow_dispatch:
jobs:
build:
strategy:
matrix:
sdk-version: ["release", "dev", "rc"]
runs-on: ubuntu-latest
name: 'ufbt: Build for ${{ matrix.sdk-version }} Branch'
steps:
- uses: actions/checkout@v4
- name: Build with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
sdk-channel: ${{ matrix.sdk-version }}
app-dir: tools/apps/lirc_converter
- name: Upload app artifacts
uses: actions/upload-artifact@v4
with:
name: "lirc_converter-${{ matrix.sdk-version }}-${{ steps.build-app.outputs.suffix }}"
path: ${{ steps.build-app.outputs.fap-artifacts }}
- name: Lint sources
uses: flipperdevices/[email protected]
with:
skip-setup: true
task: lint
app-dir: tools/apps/lirc_converter