-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
75 lines (74 loc) · 3.34 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
71
72
73
74
75
language: nix
nix: 2.3.7
jobs:
include:
- name: clang11
script:
- "nix run nixpkgs.clang_11 -c clang++ -o clang11.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang11.out
- rm ./clang11.out
- name: clang10
script:
- "nix run nixpkgs.clang_10 -c clang++ -o clang10.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang10.out
- rm ./clang10.out
- name: clang9
script:
- "nix run nixpkgs.clang_9 -c clang++ -o clang9.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang9.out
- rm ./clang9.out
- name: clang8
script:
- "nix run nixpkgs.clang_8 -c clang++ -o clang8.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang8.out
- rm ./clang8.out
- name: clang7
script:
- "nix run nixpkgs.clang_7 -c clang++ -o clang7.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang7.out
- rm ./clang7.out
- name: clang6
script:
- "nix run nixpkgs.clang_6 -c clang++ -o clang6.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang6.out
- rm ./clang6.out
- name: clang5
script:
- "nix run nixpkgs.clang_5 -c clang++ -o clang5.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./clang5.out
- rm ./clang5.out
- name: gcc10
script:
- "nix run nixpkgs.gcc10 -c g++ -o gcc10.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc10.out
- rm ./gcc10.out
- name: gcc9
script:
- "nix run nixpkgs.gcc9 -c g++ -o gcc9.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc9.out
- rm ./gcc9.out
- name: gcc8
script:
- "nix run nixpkgs.gcc8 -c g++ -o gcc8.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc8.out
- rm ./gcc8.out
- name: gcc7
script:
- "nix run nixpkgs.gcc7 -c g++ -o gcc7.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc7.out
- rm ./gcc7.out
- name: gcc6
script:
- "nix run nixpkgs.gcc6 -c g++ -o gcc6.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc6.out
- rm ./gcc6.out
- name: gcc49
script:
- "nix run nixpkgs.gcc49 -c g++ -o gcc49.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc49.out
- rm ./gcc49.out
- name: gcc48
script:
- "nix run nixpkgs.gcc48 -c g++ -o gcc48.out -std=c++11 -g -I./include -I./support/include -Wall -Wextra -Werror -Wno-unused-variable tests/test.cpp"
- ./gcc48.out
- rm ./gcc48.out