-
Notifications
You must be signed in to change notification settings - Fork 2.4k
45 lines (42 loc) · 1.06 KB
/
amd64_docker_bazel.yml
File metadata and controls
45 lines (42 loc) · 1.06 KB
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
42
43
44
45
# ref: https://github.com/docker-library/official-images
name: amd64 Docker Bazel
on:
push:
branches:
- main
- v99bugfix
workflow_dispatch:
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
bazel:
strategy:
matrix:
distro: [
almalinux,
# alpine,
archlinux,
debian,
fedora,
opensuse,
rockylinux,
ubuntu
]
fail-fast: false
name: amd64•${{matrix.distro}}•Bazel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check docker
run: |
docker info
docker buildx ls
- name: Build env image
run: make --directory=bazel amd64_${{matrix.distro}}_env
- name: Build devel image
run: make --directory=bazel amd64_${{matrix.distro}}_devel
- name: Build project
run: make --directory=bazel amd64_${{matrix.distro}}_build
- name: Test project
run: make --directory=bazel amd64_${{matrix.distro}}_test