diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2022-11-29 18:30:16 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2022-11-30 02:48:59 +0100 |
commit | ff38ee598648ae2fc76cc18dada7602dcfc90668 (patch) | |
tree | abaaf14d80e69db566ec05e0feaa308a970cf839 | |
parent | 543c8ba0971e91da3fe507dbfc1e1f9b556642b1 (diff) |
CI: Try new workers
-rw-r--r-- | .gitlab-ci.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dae59c75..292233ca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -684,3 +684,44 @@ test-kernel-learn: <<: *test-base variables: TEST_NAME: cf-kernel-learn + + +.build-birdlab-base: &build-birdlab-base + stage: build + script: + - autoreconf + - ./configure + - gmake + - gmake check + +build-birdlab-debian-11: + <<: *build-birdlab-base + tags: + - birdlab-debian-11 + - amd64 + +build-birdlab-centos-08: + <<: *build-birdlab-base + tags: + - birdlab-centos-08 + - amd64 + +build-birdlab-fedora-37: + <<: *build-birdlab-base + tags: + - birdlab-fedora-37 + - amd64 + +build-birdlab-freebsd-13: + <<: *build-birdlab-base + tags: + - birdlab-freebsd-13 + - amd64 + +build-birdlab-openbsd-71: + <<: *build-birdlab-base + variables: + AUTOCONF_VERSION: "2.71" + tags: + - birdlab-openbsd-71 + - amd64 |