forked from r-arek/travis_test_p1_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
70 lines (60 loc) · 1.2 KB
/
.travis.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
os: linux
dist: focal
arch:
# - arm64-graviton2
- arm64
jobs:
include:
- language: ruby
rvm:
- 2.5
script:
- ruby hello.rb
- language: cpp
compiler: clang
script:
- g++ -nostartfiles main.cpp
- language: python
script:
- python hello.py
- language: node_js
node_js:
- node
script:
- node hello.js
- language: java
jdk: openjdk8
script:
- mvn clean install
- language: go
script:
- go run ./hello.go
- language: php
php: '7.0'
script:
- php hello.php
- language: perl
perl: '5.30'
before_install:
- "sudo apt-get install -qq unixodbc unixodbc-dev"
- "curl -L https://cpanmin.us | perl - --sudo App::cpanminus"
- "nvm install node && nvm use node"
- "npm install -g dredd"
- cd ..
- cd travis_test_p1_3/
- "bundle install"
install:
- cpanm -f -n $(cat .perlmodules | tr "\n" " ")
script:
- perl hello.PL
- language: csharp
script:
- csc hello.cs
- mono hello.exe
- language: smalltalk
os:
- linux
smalltalk_vm:
- Squeak-5.0
smalltalk:
- Squeak64-trunk