mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
32 lines
618 B
YAML
32 lines
618 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
token: ${{ secrets.GitHub_PAT }}
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
- name: "Style checking"
|
|
uses: ./.github/actions/build
|
|
with:
|
|
action: "style"
|
|
- name: "Unit Tests"
|
|
uses: ./.github/actions/build
|
|
with:
|
|
action: check
|
|
target: linux
|
|
build_type: Debug
|
|
- name: "Build for RT1051"
|
|
uses: ./.github/actions/build
|
|
with:
|
|
action: "c&b"
|
|
target: rt1051
|
|
build_type: RelWithDebInfo
|