This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
47 lines (41 loc) · 1.52 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
language: node_js
node_js:
- "lts/*"
services:
- docker
before_install:
- echo "$DOCKERHUB_TOKEN" | docker login -u "icdevops" --password-stdin
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
- docker build --rm -t "quay.io/razee/managedset:${TRAVIS_COMMIT}" .
- if [ -n "${TRAVIS_TAG}" ]; then docker tag quay.io/razee/managedset:${TRAVIS_COMMIT} quay.io/razee/managedset:${TRAVIS_TAG}; fi
- docker images
- ./build/process-template.sh kubernetes/ManagedSet/resource.yaml >/tmp/resource.yaml
before_deploy:
- docker login -u="${QUAY_ID}" -p="${QUAY_TOKEN}" quay.io
deploy:
# Deploy alpha builds
- provider: script
script: docker push "quay.io/razee/managedset:${TRAVIS_TAG}"
skip_cleanup: true
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+_[0-9]{3}$
# Deploy released builds
- provider: script
script: docker push "quay.io/razee/managedset:${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
api_key: "${GITHUB_TOKEN}"
name: "${TRAVIS_TAG}"
on:
tags: true
condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$