aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3aec6949221c3b3c3258c21545111415c4b1918b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: c
sudo: required
dist: jammy

jobs:
  include:
    - name: linux
      os: linux

env:
  global:
    - USE_BSPM="true"
    - NOT_CRAN="true"

before_install:
  - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
  - ./run.sh bootstrap

install:
  - ./run.sh install_all

script:
  - travis_wait 30 ./run.sh run_tests

after_failure:
  - ./run.sh dump_logs

after_success:
  - travis_wait 30 ./run.sh coverage

Contact - Imprint