-
Notifications
You must be signed in to change notification settings - Fork 26
/
.travis.yml
72 lines (66 loc) · 2.57 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
language: node_js
dist: focal
node_js:
- 18
services:
- docker
env:
global:
- GITHUB_TOKEN="${PUBLIC_GITHUB_TOKEN_2024_08_20}"
before_install:
- echo "$DOCKERHUB_TOKEN" | docker login -u "icdevops" --password-stdin;
- export WS_APIKEY=${WS_APIKEY}
- export WS_USERKEY=${WS_USERKEY}
- export WS_PRODUCTNAME=${WS_PRODUCTNAME}
- export WS_PROJECTNAME=Razeedash-api
- export WS_WSS_URL=https://ibmets.whitesourcesoftware.com/agent
script:
# Audit npm packages. Fail build whan a PR audit fails, otherwise report the vulnerability and proceed. See audit-ci for details of allowlisted packages etc.
- if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then npx audit-ci --config ./audit-ci.json; else npx audit-ci --config ./audit-ci.json || true; fi
- npm run lint
- npm test
- npm run test:apollo:default
- npm run test:apollo:local
- npm run test:apollo:passport.local
- npm run test:apollo:extauthtest
- export BUILD_TIME=`date '+%Y-%m-%d %H:%M:%S'`
- docker build --rm --build-arg BUILD_TIME="$BUILD_TIME" --build-arg BUILD_ID="${TRAVIS_BUILD_NUMBER}-${TRAVIS_COMMIT}" -t "quay.io/razee/razeedash-api:${TRAVIS_COMMIT}" .
- if [ -n "${TRAVIS_TAG}" ]; then docker tag quay.io/razee/razeedash-api:${TRAVIS_COMMIT} quay.io/razee/razeedash-api:${TRAVIS_TAG}; fi
- docker images
- ./build/process-template.sh kubernetes/razeedash-api/resource.yaml >/tmp/resource.yaml
# Perform UA scan on non-PR builds
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl -LJO https://unified-agent.s3.amazonaws.com/wss-unified-agent.jar; java -jar wss-unified-agent.jar -d . || echo "UA Scan Error occurred"; fi
before_deploy:
- docker login -u="${QUAY_ID}" -p="${QUAY_TOKEN}" quay.io
deploy:
# Deploy alpha builds
- provider: script
script: docker push "quay.io/razee/razeedash-api:${TRAVIS_TAG}"
skip_cleanup: true
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+_[0-9]{3}$
- provider: releases
file: /tmp/resource.yaml
skip_cleanup: true
draft: true
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+_[0-9]{3}$
api_key: "${GITHUB_TOKEN}"
name: "${TRAVIS_TAG}"
# Deploy released builds
- provider: script
script: docker push "quay.io/razee/razeedash-api:${TRAVIS_TAG}"
skip_cleanup: true
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$
- provider: releases
file: /tmp/resource.yaml
skip_cleanup: true
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$
api_key: "${GITHUB_TOKEN}"
name: "${TRAVIS_TAG}"