blob: c35ac219ecc3487cf07bf839607dea32524b4b01 (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
version: 2
aliases:
- &defaults
working_directory: ~/ghc
# Make sure we have proper openssh before checkout: CircleCI git
# does not check the repository out properly without it and also
# takes 20 times longer than it should be.
- &precheckout
run:
name: Install OpenSSH client
command: |
apt-get update -qq
apt-get install -qy openssh-client
- &prepare
run:
name: prepare-system
command: .circleci/prepare-system.sh
- &submodules
run:
name: submodules
command: .circleci/fetch-submodules.sh
- &buildenv
THREADS: 8
SKIP_PERF_TESTS: YES
VERBOSE: 2
- &boot
run:
name: Boot
command: ./boot
- &configure_unix
run:
name: Configure
command: ./configure
- &configure_bsd
run:
name: Configure
command: ./configure --target=x86_64-unknown-freebsd10
- &make
run:
name: Build
command: "make -j$THREADS"
- &test
run:
name: Test
command: make test
- &bindist
run:
name: Create bindist
command: make binary-dist
# Building bindist takes ~15 minutes without output, account for
# that.
no_output_timeout: "30m"
- &collectartifacts
run:
name: Collect artifacts
# We need this because CircleCI expects a path without
# wildcards but bindist archive name is not static
command: |
mkdir -p /tmp/artifacts
pwd
find .
cp ghc*.tar.xz /tmp/artifacts
- &storeartifacts
store-artifacts:
path: /tmp/artifacts
jobs:
"validate-x86_64-linux":
resource_class: xlarge
docker:
- image: haskell:8.2
environment:
<<: *buildenv
steps:
- *precheckout
- checkout
- *prepare
- *submodules
- *boot
- *configure_unix
- *make
- *test
- *bindist
- *collectartifacts
- *storeartifacts
"validate-x86_64-freebsd":
resource_class: xlarge
docker:
- image: tweag/toolchain-x86_64-freebsd
environment:
TARGET: FreeBSD
<<: *buildenv
steps:
- *precheckout
- checkout
- *prepare
- *submodules
- *boot
- *configure_bsd
- *make
- *test
- *bindist
- *collectartifacts
- *storeartifacts
"validate-x86_64-darwin":
macos:
xcode: "9.0"
environment:
<<: *buildenv
steps:
- checkout
- *prepare
- *submodules
- *boot
- *configure_unix
- *make
- *test
- *bindist
- *collectartifacts
- *storeartifacts
workflows:
version: 2
validate:
jobs:
- validate-x86_64-linux
# FreeBSD disabled: https://github.com/haskell/unix/issues/102
# - validate-x86_64-freebsd
- validate-x86_64-darwin
|