From e72e104a28b26456648e228fccb5b542bdc68abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 9 Mar 2023 14:55:01 +0100 Subject: [PATCH] ios: add README file to ios/logs directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allows us to get rid of the `.gitkeep` file. Signed-off-by: Jakub SokoĊ‚owski --- ios/logs/.gitkeep | 0 ios/logs/README.md | 14 ++++++++++++++ 2 files changed, 14 insertions(+) delete mode 100644 ios/logs/.gitkeep create mode 100644 ios/logs/README.md diff --git a/ios/logs/.gitkeep b/ios/logs/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/ios/logs/README.md b/ios/logs/README.md new file mode 100644 index 0000000000..a4ab7207a3 --- /dev/null +++ b/ios/logs/README.md @@ -0,0 +1,14 @@ +# Description + +This directory is the destination of logs created by Fastlane and React Native Xcode script. + +# Logs + +* `react-native-xcode.log` - Output from `node_modules/react-native/scripts/react-native-xcode.sh`. + - Created by redirecting output of `shellScript` in `ios/StatusIm.xcodeproj/project.pbxproj`. +* `Status PR-StatusImPR.log - Created by [Fastlane Gym](https://docs.fastlane.tools/actions/gym/). + - Configred via [`Fastfile`](../Fastfile) using `buildlog_path` argument for `build_ios_app`. + +# CI + +These log files are uploaded to Jenkins as CI job artifacts on failure using `archiveArtifacts`.