mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
commit fbc6bb0c42c3f35725fbe98db4e537e22c9a3aed
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 11 09:40:00 2016 -0600
Add clean_externals script
commit f250c3dd8330732d27b49af93a7defae6df0629e
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 4 22:32:04 2016 -0600
Enable pipefail
commit 7813f12c75381d87d5ab345c591d00f7184ab150
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 4 22:19:42 2016 -0600
Configure cibuild to echo commands and fail on first error
commit 6f802a4b82c634f115b7f941d697ccee3f557a8b
Author: Ben Chatelain <ben@octop.ad>
Date: Sun Apr 3 13:01:45 2016 -0600
Overhaul cibuild
- Replaced xctool with xcodebuild + xcpretty
- Removed unused cruft and awk scripts
commit 5978a65d53def353ab34d63f02553d7ff7622d1f
Merge: 41d4e28 de7f644
Author: Ben Chatelain <ben@octop.ad>
Date: Sun Feb 28 21:06:56 2016 -0700
Merge pull request #554 from libgit2/piet/travis-matrix
Add matrix build for iOS and Mac
commit 1e3f6c5bdf38c1da26c7cc2b5bd4f6b3098bca2e
Author: Piet Brauer <piet@nerdishbynature.com>
Date: Wed Feb 24 17:40:52 2016 +0800
Add matrix build for iOS and Mac
commit 9c13681d06decdb8de327633dc80d9b742a54423
Author: Piet Brauer <piet@nerdishbynature.com>
Date: Wed Feb 24 16:23:11 2016 +0800
Enable Bitcode
23 lines
544 B
Bash
Executable File
23 lines
544 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
#
|
|
# clean_externals
|
|
# ObjectiveGit
|
|
#
|
|
# Removes the outputs from the various static library targets.
|
|
# Necessary when switching platforms/architectures as Xcode does not clean
|
|
# these for you.
|
|
#
|
|
|
|
# A list of external static libraries included in the SwiftGit2 framework
|
|
libraries=(
|
|
External/libgit2.a
|
|
External/libgit2-ios/libgit2-ios.a
|
|
External/libssh2-ios/lib/libssh2-ios.a
|
|
External/ios-openssl/lib/libssl.a
|
|
External/ios-openssl/lib/libcrypto.a
|
|
External/ios-openssl/include
|
|
)
|
|
|
|
rm -vrf "${libraries[@]}"
|