forked from flux-framework/flux-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
224 lines (213 loc) · 7.31 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
sudo: required
services: docker
dist: bionic
language: c
jobs:
include:
- stage: 'style checks'
name: 'python format'
language: 'python'
python: '3.6'
install: pip install --upgrade black
script: ./scripts/check-format
before_deploy: skip
deploy: skip
after_success: skip
after_failure: skip
- stage: 'style checks'
name: 'python lint'
language: 'python'
python: '3.6'
install: pip install 'pylint==2.4.4' --force-reinstall
script: ./scripts/pylint
before_deploy: skip
deploy: skip
after_success: skip
after_failure: skip
- stage: 'style checks'
name: 'mypy'
language: 'python'
python: '3.6'
install: python3 -m pip install 'mypy==0.770' --force-reinstall
script: mypy
before_deploy: skip
deploy: skip
after_success: skip
after_failure: skip
- name: "Ubuntu: no configure flags"
stage: test
compiler: gcc
- name: "Ubuntu 20.04: py3.8"
stage: test
compiler: gcc
env:
- IMG=focal
- PYTHON_VERSION=3.8
- DOCKER_TAG=t
- name: "Ubuntu: gcc-8 --with-flux-security/caliper --enable-content-s3, distcheck"
stage: test
compiler: gcc-8
env:
- CC=gcc-8
- CXX=g++-8
- ARGS="--with-flux-security --enable-caliper"
- DISTCHECK=t
- GITHUB_RELEASES_DEPLOY=t
- TEST_CONTENT_S3=t
- name: "Ubuntu: py3.7, clang-6.0 chain-lint --with-flux-security"
stage: test
compiler: clang-6.0
env:
- CC=clang-6.0
- CXX=clang++-6.0
- chain_lint=t
- TEST_CHECK_PREREQS=t
- ARGS="--with-flux-security"
- PYTHON_VERSION=3.7
- name: "Ubuntu: COVERAGE=t, --with-flux-security --enable-caliper"
stage: test
compiler: gcc
python: '3.6'
env:
- COVERAGE=t
- ARGS="--with-flux-security --enable-caliper"
- name: "Ubuntu: TEST_INSTALL docker-deploy"
stage: test
compiler: gcc
env:
- TEST_INSTALL=t
- DOCKER_TAG=t
- name: "Centos 7: security,caliper,enable-content-s3,docker-deploy"
stage: test
compiler: gcc
env:
- IMG=centos7
- DOCKER_TAG=t
- TEST_CONTENT_S3=t
- name: "Centos 8: security,caliper,enable-content-s3,docker-deploy"
stage: test
compiler: gcc
env:
- IMG=centos8
- DOCKER_TAG=t
- PYTHON_VERSION=3.6
- TEST_CONTENT_S3=t
stages:
- 'style checks'
- test
env:
global:
- TAP_DRIVER_QUIET=1
- FLUX_TEST_TIMEOUT=300
- DOCKERREPO=fluxrm/flux-core
- DOCKER_USERNAME=travisflux
- secure: "Uga2i1Yu0PvWMFzOYvM9yxnAMDTgY17ZqeFlIN8MV3uoTCy6y61GULrMkKuhuI1sUfyugpFWVKIJo5jwTpsfG84f3o9lUTRgLPpTA2Xls8A/rmurF/QacVv6hZ2Zs2LQVlrM8BkT36TpT2NfWW2D2238kovqz3l5gIZKMClMvyk="
cache:
directories:
- $HOME/.ccache
before_install:
# work around persistent write error bug from make in travis
# see https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-348435959
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
# die if non-blocking is still enabled
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); exit(flags&os.O_NONBLOCK);'
- if test -z "${IMG}"; then IMG="bionic"; fi
# set S3 environment if testing S3
- |
if test "$TEST_CONTENT_S3"; then
export S3_ACCESS_KEY_ID=minioadmin; \
export S3_SECRET_ACCESS_KEY=minioadmin; \
export S3_HOSTNAME=127.0.0.1:9000; \
export S3_BUCKET=flux-minio; \
export ARGS="$ARGS --enable-content-s3"; \
fi
#
# Tag image if this build is on master or result of a tag:
- |
if test "$DOCKER_TAG" = "t" \
-a "$TRAVIS_REPO_SLUG" = "flux-framework/flux-core" \
-a "$TRAVIS_PULL_REQUEST" = "false" \
-a \( "$TRAVIS_BRANCH" = "master" -o -n "$TRAVIS_TAG" \); then
export TAGNAME="${DOCKERREPO}:${IMG}${TRAVIS_TAG:+-${TRAVIS_TAG}}"
echo "Tagging new image $TAGNAME"
# Force ARGS to correct prefix, etc for docker image
export ARGS="$ARGS --prefix=/usr --sysconfdir=/etc --with-systemdsystemunitdir=/etc/systemd/system --localstatedir=/var --with-flux-security --enable-caliper"
fi
install:
- |
if test "$COVERAGE" = "t"; then \
# Use python3 coverage to match version in flux docker image
sudo apt update ; \
sudo apt install -yy python3-pip ; \
pip3 install --upgrade pip ; \
pip3 install --upgrade --force-reinstall coverage ; \
fi
- |
if test -n "$S3_HOSTNAME"; then \
docker run -d -p 9000:9000 minio/minio server /data; \
fi
script:
# Unshallow repository so git describe works.
# (The one inside docker-run-checks may fail if git version is too old)
- git fetch --unshallow --tags
- |
src/test/docker/docker-run-checks.sh -j2 \
--image=${IMG} \
${TAGNAME:+--tag=${TAGNAME}} \
-- --enable-docs ${ARGS}
after_success:
- ccache -s
# Upload coverage results for COVERAGE run
- if test "$COVERAGE" = "t"; then bash <(curl -s https://codecov.io/bash); fi
# Deploy resulting docker image to Docker Hub with appropriate tag
- |
if test -n "$TAGNAME"; then
echo "$DOCKER_PASSWORD" | \
docker login -u "$DOCKER_USERNAME" --password-stdin && \
docker push ${TAGNAME}
# If this is the bionic build, then also tag without image name:
if echo "$TAGNAME" | grep -q "bionic"; then
t="${DOCKERREPO}:${TRAVIS_TAG:-latest}"
docker tag "$TAGNAME" ${t} && \
docker push ${t}
fi
# If this is centos8 build, then build fluxorama image
if echo "$TAGNAME" | grep -q "centos8"; then
FLUXORAMA="fluxrm/fluxorama"
docker build -t ${FLUXORAMA} src/test/docker/fluxorama
docker push ${FLUXORAMA}
# If this is a tag, also push tagged version of fluxorama image
if test -n "${TRAVIS_TAG}"; then
t="${FLUXORAMA}:${TRAVIS_TAG}"
docker tag ${FLUXORAMA} ${t} &&
docker push ${t}
fi
fi
fi
after_failure:
- find . -name test-suite.log | xargs -i sh -c 'printf "===XXX {} XXX===";cat {}'
- find . -name t[0-9]*.output | xargs -i sh -c 'printf "\033[31mFound {}\033[39m\n";cat {}'
- find . -name *.broker.log | xargs -i sh -c 'printf "\033[31mFound {}\033[39m\n";cat {}'
- find . -name *.asan.* | xargs -i sh -c 'printf "\033[31mFound {}\033[39m\n";cat {}'
- src/test/backtrace-all.sh
- grep -q 'configure. exit 1' config.log && cat config.log
before_deploy:
# Get anchor (formatted properly) and base URI for latest tag in NEWS file
- export ANCHOR=$(sed -n '/^flux-core version/{s/\.//g; s/\s/-/gp;Q}' NEWS.md)
- export TAG_URI="https://github.com/${TRAVIS_REPO_SLUG}/blob/${TRAVIS_TAG}"
- export TARBALL=$(echo flux-core*.tar.gz)
- ls -l $TARBALL
- echo "Deploying tag ${TRAVIS_TAG} as $TARBALL"
deploy:
provider: releases
skip_cleanup: true
file: $TARBALL
prerelease: true
body: "View [Release Notes](${TAG_URI}/NEWS.md#${ANCHOR}) for flux-core ${TRAVIS_TAG}"
api_key:
secure: I7ckZ7Ei9oLIe8WZ8OH3EgZz81IFCIekx+v/+g3sJa6q15URlfZhVVFtiUpsJRktHcb39AflWZiEIX+HdUZyXtuTt9IES1XBIKH7x/zUL0x6f1DZKAhBx9ktYzdO/M+SpmDUg6RYxcdjVmSHZ9u935TDo104U+dY0990ZSFrpco=
on:
# Only deploy from travis builder with GITHUB_RELEASES_DEPLOY set
condition: $GITHUB_RELEASES_DEPLOY = "t"
tags: true
repo: flux-framework/flux-core