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>
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: amd64 FreeBSD CMake
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
# Only macos-12 runner provide virtualisation with vagrant/virtualbox installed.
|
|
# ref: https://github.com/actions/runner-images/tree/main/images/macos
|
|
# ref: https://app.vagrantup.com/generic/boxes/freebsd13
|
|
jobs:
|
|
vagrant:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
distro: [freebsd]
|
|
lang: [cpp, python]
|
|
allow_failure: [false]
|
|
include:
|
|
- distro: freebsd
|
|
lang: dotnet
|
|
allow_failure: true
|
|
- distro: freebsd
|
|
lang: java
|
|
allow_failure: true
|
|
name: amd64•FreeBSD•CMake•${{matrix.lang}}
|
|
runs-on: macos-12
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: vagrant version
|
|
run: Vagrant --version
|
|
- name: VirtualBox version
|
|
run: virtualbox -h
|
|
- name: Build
|
|
run: make --directory=cmake ${{matrix.distro}}_${{matrix.lang}}
|