File: .travis.yml

package info (click to toggle)
pforth 1%3A2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 904 kB
  • sloc: ansic: 6,283; makefile: 410
file content (21 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
os:
  - linux
  - osx
env:
  - WIDTHOPT=-m64
  - WIDTHOPT=-m32
language: c
compiler:
  - gcc
  - clang
matrix:
  exclude:
    - os: osx
      compiler: gcc # gcc seems to be an symlink to clang
sudo: true
before_install: |
  if [ "$TRAVIS_OS_NAME" = linux -a "$WIDTHOPT" = -m32 ]; then
     sudo apt-get install -y gcc-multilib
  fi
script:  # CC is exported by travis
  - make WIDTHOPT=$WIDTHOPT -C platforms/unix/ test