Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
# ref: https://github.com/docker-library/official-images
|
|
name: amd64 Docker CMake
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
cmake:
|
|
strategy:
|
|
matrix:
|
|
distro: [almalinux, alpine, archlinux, debian, fedora, opensuse, rockylinux, ubuntu]
|
|
lang: [cpp, python, dotnet, java]
|
|
fail-fast: false
|
|
name: amd64•${{matrix.distro}}•CMake•${{matrix.lang}}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Build base image
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_base
|
|
- name: Build env image
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_env
|
|
- name: Build devel image
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_devel
|
|
- name: Build project
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_build
|
|
- name: Test project
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_test
|
|
|
|
- name: Build install env image
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_install_env
|
|
- name: Build install devel image
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_install_devel
|
|
- name: Build install project
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_install_build
|
|
- name: Test install project
|
|
run: make --directory=cmake amd64_${{matrix.distro}}_${{matrix.lang}}_install_test
|