We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e001819 commit 8c5ba55Copy full SHA for 8c5ba55
.github/workflows/integration_tests.yml
@@ -51,7 +51,8 @@ jobs:
51
- name: Run and profile workflow
52
run: |
53
branch_name="${{ github.ref_name }}"
54
- if [[ $branch_name == 'refs/heads/master' ]]; then
+ echo "Running on branch: $branch_name"
55
+ if [[ $branch_name == 'master' ]]; then
56
steps=("ecm_prep" "run")
57
for step in "${steps[@]}"; do
58
psrecord --log memory_log_${step}.txt --include-children --interval 1 "python tests/integration_testing/run_workflow.py --run_step $step --yaml tests/integration_testing/integration_test.yml --with_profiler"
0 commit comments