forked from AthenZ/athenz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SD build updates * move travis to archive * add secrets to publish job * remove travis logback xml files Co-authored-by: Henry Avetisyan <[email protected]>
- Loading branch information
1 parent
444de75
commit a8062d1
Showing
49 changed files
with
35 additions
and
205 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
clients/java/zts/core/src/test/resources/travis_logback.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
libs/java/client_common/src/test/resources/travis_logback.xml
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
libs/java/instance_provider/src/test/resources/travis_logback.xml
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
libs/java/server_common/src/test/resources/travis_logback.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,35 @@ | ||
# Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. | ||
--- | ||
cache: | ||
job: | ||
main: [/main_job_cache] | ||
|
||
shared: | ||
image: openjdk:8 | ||
annotations: | ||
screwdriver.cd/cpu: 8 | ||
screwdriver.cd/ram: 16 | ||
screwdriver.cd/disk: HIGH | ||
screwdriver.cd/timeout: 120 | ||
environment: | ||
USER_SHELL_BIN: /bin/bash | ||
|
||
jobs: | ||
pull-request: | ||
requires: [~pr] | ||
image: openjdk:8 | ||
annotations: | ||
screwdriver.cd/cpu: 8 | ||
screwdriver.cd/ram: 16 | ||
screwdriver.cd/disk: HIGH | ||
screwdriver.cd/timeout: 120 | ||
|
||
steps: | ||
- install_dependencies: "screwdriver/scripts/install_deps.sh" | ||
- build: "screwdriver/scripts/build.sh" | ||
|
||
|
||
main: | ||
requires: [~commit] | ||
image: openjdk:8 | ||
annotations: | ||
screwdriver.cd/cpu: 8 | ||
screwdriver.cd/ram: 16 | ||
screwdriver.cd/disk: HIGH | ||
screwdriver.cd/timeout: 120 | ||
|
||
environment: | ||
USER_SHELL_BIN: bash | ||
LOCAL_MVN_REPO: "/tmp/athenz/mvnrepo" | ||
ATHENZ_MAVEN_EXTRA_OPTS: "-Dmaven.repo.local=/tmp/athenz/mvnrepo -Dmaven.javadoc.skip=true -Dmaven.source.skip=true" | ||
CCACHE_TMP_DIR: "/tmp/ccache_tmp" | ||
CCACHE_DATA_DIR: "/tmp/athenz/ccache" | ||
steps: | ||
- install_dependencies: "screwdriver/scripts/install_deps.sh" | ||
- build: "screwdriver/scripts/build.sh" | ||
|
||
publish: | ||
requires: [~tag] | ||
steps: | ||
- install_dependencies: "screwdriver/scripts/install_deps.sh" | ||
- build: "screwdriver/scripts/build.sh" | ||
- publish: "screwdriver/scripts/publish.sh" | ||
secrets: | ||
- BINTRAY_USER | ||
- BINTRAY_API_KEY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ev | ||
set -e | ||
|
||
export PATH=$PATH:/usr/local/go/bin | ||
mvn install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ev | ||
set -e | ||
|
||
apt-get update | ||
apt-get clean | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
utils/zpe_policy_updater/src/test/resources/travis_logback.xml
This file was deleted.
Oops, something went wrong.