* Add Bazel Dockerfile * Update Bazel doc * Add Bazel docker diagrams * Add Github workflow for bazel * GH workflow disable fail-fast
24 lines
612 B
YAML
24 lines
612 B
YAML
name: Docker Bazel
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Distros:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu]
|
|
fail-fast: false
|
|
env:
|
|
DISTRO: ${{ matrix.distro }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build env image
|
|
run: make --directory=bazel ${DISTRO}_env
|
|
- name: Build devel image
|
|
run: make --directory=bazel ${DISTRO}_devel
|
|
- name: Build project
|
|
run: make --directory=bazel ${DISTRO}_build
|
|
- name: Test project
|
|
run: make --directory=bazel ${DISTRO}_test
|