45 lines
677 B
YAML
45 lines
677 B
YAML
language: c
|
|
|
|
arch:
|
|
- amd64
|
|
# - arm64
|
|
# - s390x
|
|
# - ppc64le (gcc > 8.0)
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
script:
|
|
- make
|
|
- ./icapp ZIPF
|
|
|
|
matrix:
|
|
include:
|
|
- name: linux-arm64-gcc
|
|
os: linux
|
|
arch: arm64
|
|
compiler: gcc
|
|
|
|
- name: linux-ppc64le-gcc-9
|
|
env: CC=gcc-9
|
|
arch: ppc64le
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
- sudo apt-get -y update
|
|
- sudo apt-get -y install gcc-9
|
|
|
|
- name: windows-mingw-w64
|
|
arch: amd64
|
|
os: windows
|
|
script:
|
|
- mingw32-make
|
|
- ./icapp ZIPF
|
|
|
|
- name: macOS, xcode
|
|
os: osx
|