1name: amd64 FreeBSD CMake 2 3on: 4 push: 5 pull_request: 6 schedule: 7 # min hours day(month) month day(week) 8 - cron: '0 0 7,22 * *' 9 10jobs: 11 # Only MacOS hosted runner provides virtualisation with vagrant/virtualbox installed. 12 # see: https://github.com/actions/virtual-environments/tree/main/images/macos 13 make: 14 runs-on: macos-latest 15 steps: 16 - uses: actions/checkout@v2 17 - name: vagrant version 18 run: Vagrant --version 19 - name: VirtualBox version 20 run: virtualbox -h 21 - name: Build 22 run: cd cmake/ci/vagrant/freebsd && vagrant up 23