flipperzero-firmware/.github/workflows/ci.yml

35 lines
810 B
YAML
Raw Normal View History

name: 'CI'
on:
push:
branches: [ master ]
2020-09-27 23:36:32 +00:00
paths-ignore:
- 'wiki/**'
- 'wiki_static/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
2020-09-17 08:06:25 +00:00
- uses: satackey/action-docker-layer-caching@v0.0.8
continue-on-error: true
with:
key: docker-cache-${{ hashFiles('docker/**') }}-{hash}
restore-keys: docker-cache-${{ hashFiles('docker/**') }}-
- name: Build docker image
uses: ./.github/actions/docker
- name: Build target_lo in docker
uses: ./.github/actions/docker
with:
run: make -C target_lo
- name: Build target_f1 in docker
uses: ./.github/actions/docker
with:
run: make -C target_f1