Skip to content

Commit

Permalink
Set correct relative path
Browse files Browse the repository at this point in the history
 "every action and every plugin's code runs in the root of the project, while all user code from the Fastfile runs inside the ./fastlane directory." https://docs.fastlane.tools/advanced/fastlane/\#directory-behavior
  • Loading branch information
wzieba committed Aug 1, 2024
1 parent 7c69f45 commit 9616d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/lanes/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
gradle(task: "runFlank#{app.to_s.capitalize}")
sh("buildkite-agent annotation remove --context '#{annotation_ctx}' || true") if is_ci?
rescue
details_url = sh('jq ".[].webLink" build/instrumented-tests/matrix_ids.json -r')
details_url = sh('jq ".[].webLink" ../build/instrumented-tests/matrix_ids.json -r')
message = "Firebase Tests failed. Failure details can be seen [here in Firebase Console](#{details_url})"
sh('buildkite-agent', 'annotate', message, '--style', 'error', '--context', annotation_ctx) if is_ci?
UI.test_failure!(message)
Expand Down

0 comments on commit 9616d52

Please sign in to comment.