This repository was archived by the owner on Nov 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (35 loc) · 1.93 KB
/
.travis.yml
File metadata and controls
40 lines (35 loc) · 1.93 KB
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
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "ruQJ38RzaUawY/g8bXguxehnxR/OJvBF9ZXT2OtcQjiZAC/tSuErtgiyI0WOe71Sz97GhPAQvJw/vhavRb+XdlxkOEcpAf5bkO8VEpsw2OMqOTlI11jKwZ4GEOTHYgJ88SaBeXjNX9N05eZp9xZHwIsBMSVkSo5bnZTK4w+S4RPGqXw1iJo0/4Dt68RyYkGufzXL/Ko6PXdrMTfGpwLdUHs4+uI08QOLaDsBgDV5RZSI1iZoF+YS+5wUaXievS4+oLVnS4c/6uqp+z4RpF4Qn8hU4S1IKYKzw6rJUBcSGuQJVhp9JRNxVwxDEvLKf1XOV2Ir8dmPyJ+MK1YkV7qtTgm3nInjylfurX1gQ5rO+uvp+fAzqIUl6KAhvNih6JdHRlAM0gHBH939lu8p8bxp7DXP/dfcDfPCnYOimE0sKK+PAw3aUKjTGJpzFYJlOCltAoQFhvcs/xgTAJqkYh+mrKDCCu/yo7he/XqOPFOAqdcdFd7CROQ3C7PcwVsSD91z/NuvXYj0JnmKFlPYlH5NJyoTSIVeQcDCNGhWKELdxrTh+7LNBK3VeYQ7jdErpKypQPyWKTrm8CZK6F9d9dYaghQrA5iBdG5fnlaHkLPZzIQH6unet1T5Z6RKuBQP5arv1KffuK3HsqUZCBUa781mh0pUP5ORQ4PgQ3I7GaJ1qTc="
before_install:
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
- git clone https://github.com/maestro-performance/maestro-java.git -b devel && cd maestro-java && mvn -DskipTests=true install && cd .. && rm -rf maestro-java
os:
- linux
language:
- java
script: mvn -PPackage package
after_success:
- sh -c "curl --ftp-create-dirs -T ./target/maestro-results-*-bin.tar.gz -u $FTP_USER:$FTP_PASSWORD $FTP_ENDPOINT/maestro-results-db-devel-bin.tar.gz"
deploy:
# push edge to docker hub
- provider: script
script: bash docker_push edge devel
on:
branch: devel
# push stable to docker hub
- provider: script
script: bash docker_push stable maestro-results-db-1.5.3
on:
branch: master
addons:
coverity_scan:
project:
name: "orpiske/maestro-results-db"
description: "Maestro results DB client"
notification_email: angusyoung@gmail.com
build_command_prepend: "mvn clean"
build_command: "mvn test"
branch_pattern: coverity_scan