2022-01-31 02:42:28 -05:00
|
|
|
# We use Cirrus CI to test on FreeBSD.
|
|
|
|
# For GNU/Linix CI see GitHub Actions.
|
|
|
|
|
2022-01-31 02:38:24 -05:00
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-13-0
|
|
|
|
|
2022-01-31 09:12:53 -05:00
|
|
|
main_task:
|
|
|
|
name: Main (FreeBSD)
|
2022-01-31 02:38:24 -05:00
|
|
|
script:
|
2022-01-31 02:52:52 -05:00
|
|
|
- pkg install --yes autoconf automake
|
2022-01-31 02:42:28 -05:00
|
|
|
- ./autogen.sh
|
2022-01-31 02:56:20 -05:00
|
|
|
- ./configure --enable-tests CFLAGS='-O3 -fPIC'
|
2022-01-31 02:42:28 -05:00
|
|
|
- make
|
|
|
|
- make check
|
|
|
|
- sudo make install
|
2022-01-31 03:08:06 -05:00
|
|
|
|
2022-01-31 09:12:53 -05:00
|
|
|
ruby_task:
|
|
|
|
name: Ruby (FreeBSD)
|
2022-01-31 04:02:08 -05:00
|
|
|
dependencies_script:
|
2022-01-31 04:04:03 -05:00
|
|
|
- pkg install --yes autoconf automake git wget
|
2022-01-31 04:02:08 -05:00
|
|
|
ruby_cache:
|
2022-01-31 04:04:03 -05:00
|
|
|
fingerprint_key: ruby-3.0.3
|
2022-01-31 04:02:08 -05:00
|
|
|
folder: ruby-3.0.3
|
|
|
|
populate_script:
|
|
|
|
- wget https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.3.tar.gz
|
|
|
|
- tar -xzf ruby-3.0.3.tar.gz
|
|
|
|
- cd ruby-3.0.3
|
|
|
|
- ./configure
|
|
|
|
- make
|
|
|
|
- cd ..
|
2022-01-31 03:08:06 -05:00
|
|
|
script:
|
2022-01-31 04:04:03 -05:00
|
|
|
- cd ruby-3.0.3
|
|
|
|
- sudo make install
|
|
|
|
- cd ..
|
2022-01-31 03:08:06 -05:00
|
|
|
- ./autogen.sh
|
|
|
|
- ./configure CFLAGS='-O3 -fPIC'
|
|
|
|
- make
|
|
|
|
- sudo make install
|
|
|
|
- cd pkgs/ruby
|
|
|
|
- bundle install
|
2022-01-31 04:02:08 -05:00
|
|
|
- bundle exec rake compile
|
|
|
|
- bundle exec rake
|