Make fabric domain configurable #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: ${{ matrix.image }} - ${{ matrix.arch }} docker build | |
runs-on: ${{ fromJSON('{"arm64":"buildjet-2vcpu-ubuntu-2204-arm","amd64":"ubuntu-20.04"}')[matrix.arch] }} | |
strategy: | |
matrix: | |
arch: | |
- amd64 | |
- arm64 | |
image: | |
- mars | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # include tags for VERSION detection | |
- name: Build container | |
uses: ./.github/actions/build-docker-images | |
with: | |
arch: ${{ matrix.arch }} | |
image: . | |
git_rev: $GITHUB_SHA |