mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 21:58:48 +01:00
14 lines
306 B
YAML
14 lines
306 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
# 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.
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gcc-multilib
|
|
- g++-multilib
|
|
sudo: false # Enable container-based builds.
|
|
script: make all && make test
|