-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix private key location * base64 encode API key * Add developer ID application certificate * Use example travis password * Require identity be found before continuing * Skip first stage for now * Only show valid identities * Set keychain unlock timeout * Try setting key partition * Add message for failed script * Allow security binary to view certs * Only print failure on error * Try removing specific binaries * Print more * Use the default keychain * Add back codesign binary check * Print more identity info * Disable other builds for now * Add priv key * Use secure variable in .travis.yml instead * Use bullet points for secure vars * Fix file path * Fix keys * Fix keys * Remove tee * Add Travis waiting script to release-mac * Add debug info for osx-sign * Set key partition list * Add retries to packaging mac app * Move API key to encrypted file * Fix key file name * Use global keys directory * Print stuff in appstoreconnect dir * Remove find and poke-travis * Enable Linux/Windows/binary builds again * Remove poke-travis in favor of travis_wait script * Move docker service into stages * Try adding travis tag default to fix combined releases * No need to upgrade Go, since it is in .travis.yml * Remove intermediate make task * Remove TTY requirement from Docker build * Remove unused TRAVIS_TAG setting * Restore disabled travis jobs * Split out each app release into separate targets * Fix missing prerequisites * Fix condition for linux test release * Build linux app in docker again, reduce file copies for app builds * Fix missing docker service for linux test release * Add back poke-travis so logs work again * Try forcibly removing node_modules * Fix dependency target issue in travis * Fix option -t position * Only run release jobs on tags and master * Re-add tty for color output * Simplify Windows app file management * Fix build conditions to not run on a pull requests' master (default "base branch" on Travis PRs)
- Loading branch information
1 parent
6fdefb2
commit e1ee4a3
Showing
11 changed files
with
892 additions
and
353 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
|
||
function retry() { | ||
local attempts=$1 | ||
if [[ "$attempts" =~ ^-?[0-9]+$ ]]; then | ||
shift | ||
else | ||
attempts=3 | ||
fi | ||
local rc | ||
for (( trial = 1; trial == 1 || trial <= attempts + 1; trial += 1 )); do | ||
if "$@"; then | ||
return 0 | ||
else | ||
rc=$? | ||
echo "Trial $trial exited [$rc]." | ||
if (( trial != attempts + 1 )); then | ||
echo "Retrying... $*" | ||
fi | ||
fi | ||
done | ||
return $rc | ||
} |
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,2 @@ | ||
* | ||
!*.enc |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
<key>com.apple.security.network.client</key> | ||
<true/> | ||
</dict> | ||
</plist> |
Oops, something went wrong.