Created
May 7, 2018 00:21
-
-
Save koral--/28492c0a41097efe52db20f71b11a290 to your computer and use it in GitHub Desktop.
bitrise.yml example
This file contains hidden or 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
- change-workdir: | |
title: Switch working dir to test / _tmp dir | |
description: |- | |
To prevent step testing issues, like referencing relative | |
files with just './some-file' in the step's code, which would | |
work for testing the step from this directory directly | |
but would break if the step is included in another `bitrise.yml`. | |
run_if: "true" | |
inputs: | |
- path: ./_tmp | |
- is_create_path: true | |
- errcheck: {} | |
- go-test: {} | |
- golint: {} | |
- path::./: | |
title: Step Test | |
run_if: "true" | |
inputs: | |
- version: $FLUTTER_VERSION | |
- working_dir: $WORKING_DIR | |
- commands: $FLUTTER_COMMANDS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment