mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
11 lines
284 B
YAML
11 lines
284 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
|
|
# 32-bit builds to work, we need gcc-multilib.
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq gcc-multilib
|
|
|
|
script: make all && make test |