generated from cyberark/conjur-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds build script & info about building the client
- Loading branch information
Showing
11 changed files
with
50 additions
and
67 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
# Run from top-level dir | ||
cd "$(dirname "$0")/.." || (echo "Could not cd to parent dir"; exit 1) | ||
source bin/util | ||
|
||
./bin/test_integration $@ --jar | ||
|
||
announce "Output available in ./client/target" |
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,14 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Run from top-level dir | ||
cd "$(dirname "$0")/.." || (echo "Could not cd to parent dir"; exit 1) | ||
source ./bin/util | ||
|
||
admin_api_key=$(get_conjur_admin_api_key) | ||
export CONJUR_AUTHN_API_KEY=$admin_api_key | ||
admin_api_key="$(get_conjur_admin_api_key)" | ||
export CONJUR_AUTHN_API_KEY="$admin_api_key" | ||
|
||
echo "Conjur admin api key $admin_api_key" | ||
|
||
# Docker-compose will pick this file up when starting containers | ||
# so we will have these variables in the container | ||
cat <<ENV > .env | ||
CONJUR_AUTHN_API_KEY=$admin_api_key | ||
CONJUR_AUTHN_API_KEY="$admin_api_key" | ||
ENV |
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