Skip to content

Commit

Permalink
depman update
Browse files Browse the repository at this point in the history
  • Loading branch information
Krisztián Gödrei committed Jul 29, 2016
1 parent 44f0ed3 commit 7da0378
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 84 deletions.
118 changes: 39 additions & 79 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ workflows:
test:
title: Bitrise Init Test
description: Bitrise Init Test
envs:
- CLONE_INTO_DIR: _tmp
steps:
- script:
title: "Scann test: ios-no-shared-schemes"
Expand All @@ -23,17 +25,11 @@ workflows:
rm -rf ./_tmp
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/ios-no-shared-schemes.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -44,19 +40,13 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-io/sample-apps-ios-simple-objc.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -67,19 +57,13 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/sample-apps-android-sdk22.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -90,19 +74,13 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/xamarin-sample-app.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -113,53 +91,47 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-io/sample-apps-ios-watchkit.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
- path::./:
title: Step Test
inputs:
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
- script:
title: "Scanner test: fastlane"
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
- content: |-
#!/bin/bash
set -x
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/fastlane.git
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
# - script:
# title: "Scann test: android-sdk22-no-gradlew"
# inputs:
# - content: |-
# #!/bin/bash
# set -x
#
# rm -rf ./_tmp
# SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/android-sdk22-no-gradlew.git
# git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
# $SCANNER_BIN --ci config --dir ./_tmp/sample-repo --output-dir ./_tmp/output --format json
- script:
title: "Scann test: sample-apps-xamarin-ios"
inputs:
- content: |-
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-io/sample-apps-xamarin-ios.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -170,19 +142,13 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-samples/android-non-executable-gradlew.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand All @@ -193,19 +159,13 @@ workflows:
#!/bin/bash
set -x
rm -rf ./_tmp
rm -rf $CLONE_INTO_DIR
SAMPLE_APP_REPOSITORY_URL=https://github.com/bitrise-io/sample-apps-xamarin-android.git
git clone $SAMPLE_APP_REPOSITORY_URL ./_tmp/sample-repo
- change-workdir:
title: Switch working dir to ./_tmp
run_if: true
inputs:
- path: ./_tmp/sample-repo
- is_create_path: true
git clone $SAMPLE_APP_REPOSITORY_URL $CLONE_INTO_DIR
- path::./:
title: Step Test
inputs:
- scan_dir: ./
- scan_dir: $CLONE_INTO_DIR
- output_dir: ../result
- scan_result_submit_url: $BITRISE_SCAN_RESULT_POST_URL
- scan_result_submit_api_token: $BITRISE_APP_API_TOKEN
Expand Down
2 changes: 1 addition & 1 deletion deplock.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dep_locks": [
{
"url": "https://github.com/bitrise-core/bitrise-init.git",
"revision": "cda32880c9aa2bd20f31d94534e6c0ee8a0b599e"
"revision": "fd5850437e18db75178693eabe0b489e35fa0ac5"
}
]
}
7 changes: 6 additions & 1 deletion go/src/github.com/bitrise-core/bitrise-init/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
## Changelog (Current version: 0.9.10)
## Changelog (Current version: 0.9.11)

-----------------

### 0.9.11 (2016 Jul 29)

* [1bad745] prepare for 0.9.11
* [1d56f71] typo fix

### 0.9.10 (2016 Jul 29)

* [ca94c8c] prepare for 0.9.10
Expand Down
2 changes: 1 addition & 1 deletion go/src/github.com/bitrise-core/bitrise-init/bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ workflows:
2, Export RELEASE_VERSION
3, Create binaries
envs:
- RELEASE_VERSION: 0.9.10
- RELEASE_VERSION: 0.9.11
after_run:
- _export_release_version
- create_binaries
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (scanner *Scanner) Options() (models.OptionModel, models.Warnings, error) {
return models.OptionModel{}, models.Warnings{}, err
}

log.Details("%d lane(s) found")
log.Details("%d lane(s) found", len(lanes))
for _, lane := range lanes {
log.Details("- %s", lane)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "0.9.10"
const VERSION = "0.9.11"

0 comments on commit 7da0378

Please sign in to comment.