35 lines
810 B
YAML
35 lines
810 B
YAML
name: 'CI'
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths-ignore:
|
|
- 'wiki/**'
|
|
- 'wiki_static/**'
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- 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
|