2019-08-27 08:24:24 -04:00
|
|
|
alpine_task:
|
|
|
|
container:
|
|
|
|
image: alpine
|
|
|
|
setup_script:
|
|
|
|
- apk update
|
|
|
|
- apk add build-base
|
|
|
|
compile_script: scripts/build.sh
|
2019-08-27 18:23:53 -04:00
|
|
|
archlinux_task:
|
|
|
|
container:
|
|
|
|
image: archlinux/base
|
|
|
|
setup_script:
|
|
|
|
- pacman --noconfirm -Sy
|
|
|
|
- pacman --noconfirm -S gcc
|
|
|
|
compile_script: scripts/build.sh
|
2019-08-27 08:24:24 -04:00
|
|
|
centos_task:
|
|
|
|
container:
|
|
|
|
image: centos
|
|
|
|
setup_script:
|
|
|
|
- yum update
|
|
|
|
- yum install -y gcc libc-devel
|
|
|
|
compile_script: scripts/build.sh
|
|
|
|
debian_task:
|
|
|
|
container:
|
|
|
|
image: debian
|
|
|
|
setup_script:
|
|
|
|
- apt update
|
|
|
|
- apt install -y gcc libc-dev
|
|
|
|
compile_script: scripts/build.sh
|
2019-08-27 17:30:39 -04:00
|
|
|
ubuntu_task:
|
|
|
|
container:
|
|
|
|
image: ubuntu
|
|
|
|
setup_script:
|
|
|
|
- apt update
|
|
|
|
- apt install -y gcc libc-dev
|
|
|
|
compile_script: scripts/build.sh
|
2019-08-27 08:24:24 -04:00
|
|
|
freebsd_task:
|
|
|
|
freebsd_instance:
|
|
|
|
image: freebsd-12-0-release-amd64
|
|
|
|
compile_script: scripts/build.sh
|
|
|
|
macos_task:
|
|
|
|
osx_instance:
|
|
|
|
image: mojave-base
|
|
|
|
compile_script: scripts/build.sh
|
2019-09-02 12:08:35 -04:00
|
|
|
cygwin_task:
|
|
|
|
windows_container:
|
|
|
|
image: cirrusci/windowsservercore:2019
|
|
|
|
os_version: 2019
|
|
|
|
setup_script:
|
|
|
|
- choco install -y --no-progress cygwin
|
|
|
|
- c:\tools\cygwin\cygwinsetup -q -P binutils,gcc-core
|
|
|
|
compile_script:
|
|
|
|
- c:\tools\cygwin\bin\bash --login "%CD%\scripts\build.sh"
|