Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMizux <mizux.dev@gmail.com>2021-06-30 16:02:23 +0300
committerGitHub <noreply@github.com>2021-06-30 16:02:23 +0300
commit38213bd010d622c21b83f0c6eb9f37430d40d4ae (patch)
tree7321379f82e82dece1a3e99162428ce6836df8cd /.github
parent5492c4c561f78c396f675b51169925904d55cdb1 (diff)
ci: Add FreeBSD GitHub workflows (#167)
First step to fixing #158 : add a CI for FreeBSD.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/freebsd.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml
new file mode 100644
index 0000000..807181d
--- /dev/null
+++ b/.github/workflows/freebsd.yml
@@ -0,0 +1,22 @@
+name: FreeBSD
+
+on:
+ push:
+ pull_request:
+ schedule:
+ # min hours day(month) month day(week)
+ - cron: '0 0 7,22 * *'
+
+jobs:
+ # Only MacOS hosted runner provides virtualisation with vagrant/virtualbox installed.
+ # see: https://github.com/actions/virtual-environments/tree/main/images/macos
+ freebsd:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: vagrant version
+ run: Vagrant --version
+ - name: VirtualBox version
+ run: virtualbox -h
+ - name: Build
+ run: cd ci/vagrant/freebsd && vagrant up