ObjFW  Check-in [d214ee0b06]

Overview
Comment:Add .cirrus.yml file for Cirrus CI

This only enables FreeBSD, as the other OSes offered by Cirrus CI are
already covered.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d214ee0b06e48879653e684b4593f47b52a5765c96166d1be835ecffbdc3757a
User & Date: js on 2020-06-07 10:14:54
Other Links: manifest | tags
Context
2020-06-07
11:19
configure: Also check for _Unwind_* in libgcc(_s) check-in: ec77afb06a user: js tags: trunk
10:14
Add .cirrus.yml file for Cirrus CI check-in: d214ee0b06 user: js tags: trunk
2020-06-04
22:37
extra.mk.in: Remove obsolete comment check-in: 85288221c8 user: js tags: trunk
Changes

Added .cirrus.yml version [6338675a88].













































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
task:
  name: FreeBSD 12.1
  freebsd_instance:
    image_family: freebsd-12-1
  install_script:
    pkg install -y autoconf automake
  shared_script:
    - ./autogen.sh
    - ./configure
    - make -j4 install
  static_script:
    - ./autogen.sh
    - ./configure --disable-shared
    - make -j4 install
  shared_seluid24_script:
    - ./autogen.sh
    - ./configure --enable-seluid24
    - make -j4 install
  static_seluid24_script:
    - ./autogen.sh
    - ./configure --disable-shared --enable-seluid24
    - make -j4 install