diff options
author | Clement Tsang <34804052+ClementTsang@users.noreply.github.com> | 2022-12-02 20:12:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 20:12:49 -0500 |
commit | 3e47383b25a04405c49d7da35d079d29d676e9e5 (patch) | |
tree | f3926e7f1bcae2bcfe945afa1680ca7b9c666abd /.cirrus.yml | |
parent | 9c3e60e74f0af93ed4ad7e8534db54e10219526a (diff) |
ci: add freebsd 12 as a build/check target (#922)
* ci: add freebsd 12 as a build/check target
* forgot to add 12 for tests
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 4c8cd00f..40e5bd12 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -47,6 +47,9 @@ test_task: - name: "FreeBSD 13 Test" freebsd_instance: image_family: freebsd-13-1 + - name: "FreeBSD 12 Test" + freebsd_instance: + image_family: freebsd-12-3 - name: "macOS M1 Test" macos_instance: image: ghcr.io/cirruslabs/macos-monterey-base:latest @@ -75,11 +78,17 @@ build_task: MANPAGE_DIR: "target/tmp/bottom/manpage/" matrix: - name: "FreeBSD 13 Build" - alias: "freebsd_build" + alias: "freebsd_13_1_build" freebsd_instance: image_family: freebsd-13-1 env: TARGET: "x86_64-unknown-freebsd" + - name: "FreeBSD 12 Build" + alias: "freebsd_12_3_build" + freebsd_instance: + image_family: freebsd-12-3 + env: + TARGET: "x86_64-unknown-freebsd" - name: "macOS M1 Build" alias: "macos_build" macos_instance: |