Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Thing #9

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
add8b93
Update circle.yml
ProjectFrank Jun 17, 2015
05fb4d2
Update circle.yml again
ProjectFrank Jun 17, 2015
8a83d12
Test with package.json
Jul 7, 2015
ea5b571
Update circle.yml
Jul 7, 2015
4d19194
Update circle.yml
Jul 7, 2015
a96bc22
Update circle.yml
Jul 7, 2015
cfec759
add node
Jul 8, 2015
751aedb
Install nvm
Jul 8, 2015
d482fde
Change /etc/hosts
ProjectFrank Aug 7, 2015
924671c
Fix circle bugging
ProjectFrank Aug 7, 2015
cd1e6bb
Fix circle bugging for realsies
ProjectFrank Aug 7, 2015
67e5a79
Check /etc/hosts
ProjectFrank Aug 7, 2015
7a6cc54
Attempt to override build config in machine phase
ProjectFrank Aug 10, 2015
c437c7f
try xcode 6.4
ProjectFrank Aug 27, 2015
f30599d
Try adding java
ProjectFrank Aug 31, 2015
53b5b22
Fix xcode version
ProjectFrank Aug 31, 2015
8f765cd
Add java
ProjectFrank Aug 31, 2015
f0ff98d
Try weird looking quotes
ProjectFrank Sep 14, 2015
4713024
try without quotes
ProjectFrank Sep 14, 2015
24a2834
Revert
ProjectFrank Sep 14, 2015
b9cd5ce
Revert "try without quotes"
ProjectFrank Sep 14, 2015
8b73b3b
Fix merge crap
ProjectFrank Sep 14, 2015
c52d1e1
Try using brew to install nvm
ProjectFrank Sep 25, 2015
b7d686b
Get rid of java
ProjectFrank Sep 25, 2015
9240a64
Echo path
ProjectFrank Nov 5, 2015
5fef39a
Try xcode 6.3.1
ProjectFrank Nov 6, 2015
37bbba8
Try 6.3.1 without quotes
ProjectFrank Nov 6, 2015
6693818
Add jq magic
ProjectFrank Jan 19, 2016
dc4b7ec
Use Xcode 7.2
ProjectFrank Jan 19, 2016
ae44596
Remove specified node version
ProjectFrank Jan 19, 2016
843dc95
Check curl output
ProjectFrank Jan 19, 2016
fcc22e2
Get human readable JSON
ProjectFrank Jan 19, 2016
62f0c07
Remove package.json
ProjectFrank Jan 19, 2016
b0bca48
Override inferred tests
ProjectFrank Jan 19, 2016
a2239db
Try fixing query param
ProjectFrank Jan 19, 2016
2243bac
Fetch unshallow
ProjectFrank Jan 19, 2016
89f71ab
Try weird env var
ProjectFrank Jan 26, 2016
1ca9ec1
Comment out change logging
ProjectFrank Jan 26, 2016
fd42f5c
Add the other weird env var
ProjectFrank Jan 26, 2016
cbf2596
Try removing the bit at the end
ProjectFrank Jan 26, 2016
ecffb25
Try weird test command
ProjectFrank Feb 4, 2016
1c89867
Make dependencies step go faster
ProjectFrank Aug 3, 2016
6618cb2
No more deployment step
ProjectFrank Aug 3, 2016
4970d92
Create blah
ProjectFrank Aug 5, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions blah
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

49 changes: 40 additions & 9 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,50 @@
machine:
pre:
- brew install nvm jq
- |
curl https://circleci.com/api/v1/project/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/tree/$CIRCLE_BRANCH\?limit\=100\?circle-token\=$CIRCLE_TOKEN
# Log all commits since last commit in last successful build
# - |
# cd $CIRCLE_PROJECT_REPONAME && git fetch --unshallow && git log `echo $(curl -H "accept: application/json" https://circleci.com/api/v1/project/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/tree/$CIRCLE_BRANCH\?limit\=100\&circle-token\=$CIRCLE_TOKEN | jq '[.[] | select(.status=="success" or .status=="fixed") | .all_commit_details[-1].commit][0]') | sed -e 's/^"//' -e 's/"$//'`..HEAD | cat | tee changelog.txt
- echo $PATH
environment:
XCODE_SCHEME: CircleCI-Sample
XCODE_WORKSPACE: CircleCI-Sample.xcworkspace
DEVELOPER_NAME: 'iPhone Distribution: Takahiro Horikawa (HSM2AYDCY3)'
APPNAME: CircleCI-Sample
PROFILE_UUID: 30fc0261-b07e-421a-8b11-ae29168827d2
TESTFLIGHT_DIST_LIST: your-dist-list-name
DYLD_LIBRARY_PATH: /Applications/Xcode-7.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib:$DYLD_LIBRARY_PATH
DYLD_FRAMEWORK_PATH: /Applications/Xcode-7.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib:$DYLD_FRAMEWORK_PATH
post:
- sudo bash -c "printf '127.0.0.1 local.jackpocket.com\n' >> /etc/hosts"
- cat /etc/hosts
xcode:
version: 7.2
dependencies:
override:
- pod install:
timeout: 300
deployment:
testflight:
branch: master
commands:
- ./scripts/add-key.sh
- ./scripts/testflight.sh
- ./scripts/remove-key.sh
- echo "do nothing"
# deployment:
# testflight:
# branch: master
# commands:
# - ./scripts/add-key.sh
# - ./scripts/testflight.sh
# - ./scripts/remove-key.sh
test:
override:
- echo "no tests"
# - |
# if [ -z $CI_PULL_REQUEST ] ; then \
# xctool \
# -reporter pretty \
# CODE_SIGNING_REQUIRED=NO \
# CODE_SIGN_IDENTITY= \
# PROVISIONING_PROFILE= \
# -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' \
# -sdk iphonesimulator \
# -workspace AtticGem.xcworkspace \
# -scheme AtticGemTests \
# -configuration Debug \
# clean test; \
# fi