Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply YAML lint #95

Merged
merged 2 commits into from
Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ workflows:

check:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git: {}
- git::https://github.com/bitrise-steplib/steps-check.git: { }

e2e:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git:
inputs:
- workflow: e2e
- git::https://github.com/bitrise-steplib/steps-check.git:
inputs:
- workflow: e2e

ci:
before_run:
Expand Down
14 changes: 7 additions & 7 deletions e2e/bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflows:
- GRADLE_FILE: ./build.gradle
- GRADLE_TASK: assembleDebug
- GRADLEW_PATH: ./gradlew
- GRADLE_OPTIONS: "--debug"
- GRADLE_OPTIONS: --debug
after_run:
- _common
- _check_cache
Expand Down Expand Up @@ -74,7 +74,7 @@ workflows:
- GRADLE_FILE: ./build.gradle
- GRADLE_TASK: nonexistentTask
- GRADLEW_PATH: ./gradlew
- GRADLE_OPTIONS: "--debug"
- GRADLE_OPTIONS: --debug
after_run:
- _common
- _check_log_output
Expand Down Expand Up @@ -160,7 +160,7 @@ workflows:
- CLONE_INTO_DIR: .
- GRADLE_FILE: ""
- GRADLE_TASK: assembleDebug
- GRADLEW_PATH: "./gradlew"
- GRADLEW_PATH: ./gradlew
- GRADLE_OPTIONS: ""
after_run:
- _common
Expand All @@ -172,7 +172,7 @@ workflows:
- CLONE_INTO_DIR: .
- GRADLE_FILE: ""
- GRADLE_TASK: assembleDebug
- GRADLEW_PATH: "./gradlew"
- GRADLEW_PATH: ./gradlew
- GRADLE_OPTIONS: ""
after_run:
- _common
Expand All @@ -184,9 +184,9 @@ workflows:
- TEST_APP_URL: https://github.com/bitrise-samples/android-gradle-kotlin-dsl.git
- TEST_APP_BRANCH: master
- CLONE_INTO_DIR: .
- GRADLE_FILE: "./build.gradle.kts"
- GRADLE_FILE: ./build.gradle.kts
- GRADLE_TASK: assembleDebug
- GRADLEW_PATH: "./gradlew"
- GRADLEW_PATH: ./gradlew
- GRADLE_OPTIONS: ""
after_run:
- _common
Expand Down Expand Up @@ -223,7 +223,7 @@ workflows:
but not if the step is included in another bitrise.yml!
run_if: "true"
inputs:
- path: "$ORIG_BITRISE_SOURCE_DIR/_tmp"
- path: $ORIG_BITRISE_SOURCE_DIR/_tmp
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git:
inputs:
- repository_url: $TEST_APP_URL
Expand Down
Loading