105 lines
2.9 KiB
YAML
105 lines
2.9 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
cargo_profiles:
|
|
type: string
|
|
description: Cargo profiles
|
|
feat_sets:
|
|
type: string
|
|
description: Cargo feature groups
|
|
rust_toolchains:
|
|
type: string
|
|
description: Rust toolchains
|
|
sys_names:
|
|
type: string
|
|
description: System names
|
|
sys_versions:
|
|
type: string
|
|
description: System versions
|
|
rust_targets:
|
|
type: string
|
|
description: Rust targets
|
|
sys_targets:
|
|
type: string
|
|
description: System targets
|
|
machines:
|
|
type: string
|
|
description: Hardware platform vector
|
|
excludes:
|
|
type: string
|
|
default: '[]'
|
|
description: Matrix exclusions
|
|
includes:
|
|
type: string
|
|
default: '[]'
|
|
description: Matrix inclusions
|
|
docker_repo:
|
|
type: string
|
|
description: DockerHub Repository
|
|
secrets:
|
|
ghcr_token:
|
|
dockerhub_token:
|
|
|
|
jobs:
|
|
containers:
|
|
if: >
|
|
${{
|
|
!failure() && !cancelled()
|
|
&& inputs.machines
|
|
&& inputs.docker_repo != ''
|
|
&& github.ref == 'refs/heads/main'
|
|
}}
|
|
name: Publish containers
|
|
runs-on: ${{matrix.machine}}
|
|
permissions: write-all
|
|
continue-on-error: false
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
bake_target: ${{fromJSON('["github", "dockerhub"]')}}
|
|
cargo_profile: ${{fromJSON(inputs.cargo_profiles)}}
|
|
rust_toolchain: ${{fromJSON(inputs.rust_toolchains)}}
|
|
feat_set: ${{fromJSON(inputs.feat_sets)}}
|
|
sys_name: ${{fromJSON(inputs.sys_names)}}
|
|
sys_version: ${{fromJSON(inputs.sys_versions)}}
|
|
rust_target: ${{fromJSON(inputs.rust_targets)}}
|
|
sys_target: ${{fromJSON(inputs.sys_targets)}}
|
|
machine: ${{fromJSON(inputs.machines)}}
|
|
exclude: ${{fromJSON(inputs.excludes)}}
|
|
include: ${{fromJSON(inputs.includes)}}
|
|
|
|
steps:
|
|
- name: GitHub Login
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.ghcr_token }}
|
|
|
|
- name: DockerHub Login
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: docker.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.dockerhub_token }}
|
|
|
|
- name: Bake
|
|
env:
|
|
bake_target: ${{matrix.bake_target}}
|
|
cargo_profile: ${{matrix.cargo_profile}}
|
|
rust_toolchain: ${{matrix.rust_toolchain}}
|
|
rust_target: ${{matrix.rust_target}}
|
|
feat_set: ${{matrix.feat_set}}
|
|
sys_name: ${{matrix.sys_name}}
|
|
sys_version: ${{matrix.sys_version}}
|
|
sys_target: ${{matrix.sys_target}}
|
|
machine: ${{matrix.machine}}
|
|
acct: ${{github.actor}}
|
|
repo: ${{github.repository}}
|
|
docker_repo: ${{inputs.docker_repo}}
|
|
|
|
run: |
|
|
docker/bake.sh "${{matrix.bake_target}}"
|