Skip to content

Commit e62d569

Browse files
author
Nayeem Kamal
committed
merge with feature branch
2 parents 688d984 + 993cdbe commit e62d569

File tree

1,338 files changed

+39089
-10265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,338 files changed

+39089
-10265
lines changed

.circleci/cancel_workflow.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

.circleci/checkout_merge_commit.sh

Lines changed: 0 additions & 19 deletions
This file was deleted.

.circleci/collect_libs.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

.circleci/collect_reports.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ done
3535

3636
mkdir -p $REPORTS_DIR >/dev/null 2>&1
3737

38-
cp /tmp/hs_err_pid*.log $REPORTS_DIR || true
39-
cp /tmp/java_pid*.hprof $REPORTS_DIR || true
40-
cp /tmp/javacore.* $REPORTS_DIR || true
41-
cp /tmp/*.trc $REPORTS_DIR || true
42-
cp /tmp/*.dmp $REPORTS_DIR || true
43-
cp /tmp/dd-profiler/*.jfr $REPORTS_DIR || true
38+
cp /tmp/hs_err_pid*.log $REPORTS_DIR 2>/dev/null || true
39+
cp /tmp/java_pid*.hprof $REPORTS_DIR 2>/dev/null || true
40+
cp /tmp/javacore.* $REPORTS_DIR 2>/dev/null || true
41+
cp /tmp/*.trc $REPORTS_DIR 2>/dev/null || true
42+
cp /tmp/*.dmp $REPORTS_DIR 2>/dev/null || true
43+
cp /tmp/dd-profiler/*.jfr $REPORTS_DIR 2>/dev/null || true
4444

4545
function process_reports () {
4646
project_to_save=$1
@@ -59,9 +59,9 @@ function process_reports () {
5959
else
6060
echo "copying reports for $project_to_save"
6161
mkdir -p $report_path
62-
cp -r workspace/$project_to_save/build/reports/* $report_path/ || true
63-
cp workspace/$project_to_save/build/hs_err_pid*.log $report_path/ || true
64-
cp workspace/$project_to_save/build/javacore*.txt $report_path/ || true
62+
cp -r workspace/$project_to_save/build/reports/* $report_path/ 2>/dev/null || true
63+
cp workspace/$project_to_save/build/hs_err_pid*.log $report_path/ 2>/dev/null || true
64+
cp workspace/$project_to_save/build/javacore*.txt $report_path/ 2>/dev/null || true
6565
fi
6666
}
6767

@@ -73,4 +73,4 @@ for report_path in workspace/**/build/reports; do
7373
process_reports $report_path
7474
done
7575

76-
tar -cvzf reports.tar $REPORTS_DIR
76+
tar -czf reports.tar $REPORTS_DIR

.circleci/collect_results.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function get_source_file () {
3535
fi
3636
done
3737
done < <(grep -rl "class $class" "$file_path")
38-
file_path="$common_root"
38+
file_path="/$common_root"
3939
fi
4040
}
4141

0 commit comments

Comments
 (0)