Forcing event trigger #74
Workflow file for this run
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
# | |
# Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com) | |
# | |
# Distributed under the Boost Software License, Version 1.0. (See accompanying | |
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
# | |
name: Build Docker images | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- tools/docker/** | |
jobs: | |
linux-images: | |
strategy: | |
matrix: | |
include: | |
- { image: build-clang3_6, dockerfile: build-clang3_6, platforms: "linux/amd64", } | |
- { image: build-clang7, dockerfile: build-clang7, platforms: "linux/amd64", } | |
- { image: build-clang11, dockerfile: build-clang11, platforms: "linux/amd64", } | |
- { image: build-clang14, dockerfile: build-clang14, platforms: "linux/amd64, linux/arm64/v8" } | |
- { image: build-clang16, dockerfile: build-clang16, platforms: "linux/amd64" } | |
- { image: build-clang16-i386, dockerfile: build-clang16-i386, platforms: "linux/amd64" } | |
- { image: build-gcc5, dockerfile: build-gcc5, platforms: "linux/amd64", } | |
- { image: build-gcc6, dockerfile: build-gcc6, platforms: "linux/amd64", } | |
- { image: build-gcc10, dockerfile: build-gcc10, platforms: "linux/amd64", } | |
- { image: build-gcc11, dockerfile: build-gcc11, platforms: "linux/amd64, linux/arm64/v8" } | |
- { image: build-gcc13, dockerfile: build-gcc13, platforms: "linux/amd64" } | |
- { image: build-cmake3_8, dockerfile: build-cmake3_8, platforms: "linux/amd64", } | |
- { image: build-noopenssl, dockerfile: build-noopenssl, platforms: "linux/amd64", } | |
- { image: build-docs, dockerfile: build-docs, platforms: "linux/amd64", } | |
- { image: mysql5, dockerfile: mysql5, platforms: "linux/amd64", } | |
- { image: mysql8, dockerfile: mysql8, platforms: "linux/amd64, linux/arm64/v8" } | |
- { image: mariadb, dockerfile: mariadb, platforms: "linux/amd64, linux/arm64/v8" } | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: anarthal-containers | |
password: ${{ secrets.ANARTHAL_CONTAINERS_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
file: tools/docker/${{ matrix.dockerfile }}.dockerfile | |
build-args: ${{ matrix.build-args }} | |
platforms: ${{ matrix.platforms }} | |
tags: ghcr.io/anarthal-containers/${{ matrix.image }}:${{ github.sha }}, ghcr.io/anarthal-containers/${{ matrix.image }}:latest | |
windows-images: | |
strategy: | |
matrix: | |
include: | |
- { image: build-msvc14_1, base-image: "cppalliance/dronevs2017:1" } | |
- { image: build-msvc14_2, base-image: "cppalliance/dronevs2019:1" } | |
- { image: build-msvc14_3, base-image: "cppalliance/dronevs2022:1" } | |
permissions: | |
contents: read | |
packages: write | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: anarthal-containers | |
password: ${{ secrets.ANARTHAL_CONTAINERS_TOKEN }} | |
- name: Build and push Docker image | |
run: | | |
FULL_IMAGE=ghcr.io/anarthal-containers/${{ matrix.image }} | |
docker build -f tools/docker/build-msvc.dockerfile --build-arg BASE_IMAGE=${{ matrix.base-image }} -t $FULL_IMAGE:$GITHUB_SHA -t $FULL_IMAGE:latest . | |
docker push $FULL_IMAGE --all-tags |