Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ pipelines:

# 3. Dynamic Execution
- |
echo "Running: ${GG_TOOL} ${GG_TARGET}${GG_ARGS}"
${GG_TOOL} ${GG_TARGET}${GG_ARGS}
echo "Running: ${GG_TOOL} ${GG_TARGET} ${GG_ARGS}"
${GG_TOOL} ${GG_TARGET} ${GG_ARGS}

# 4. Bitbucket Code Insights Native Integration
# Automatically translates the SARIF output into inline Pull Request annotations
Expand Down Expand Up @@ -87,11 +87,11 @@ pipelines:
pip install networkx tiktoken xgboost pandas numpy
fi
- |
echo "Running: ${GG_TOOL} ${GG_TARGET}${GG_ARGS}"
echo "Running: ${GG_TOOL} ${GG_TARGET} ${GG_ARGS}"
${GG_TOOL} ${GG_TARGET} ${GG_ARGS}
- |
if [ -f "templates/bitbucket/bitbucket_insights.py" ]; then
python templates/bitbucket/bitbucket_insights.py gitgalaxy-results_sarif.json
fi
artifacts:
- gitgalaxy-results_sarif.json
- gitgalaxy-results_sarif.json
6 changes: 3 additions & 3 deletions templates/bitbucket/bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ pipelines:
fi

- |
echo "Running: ${GG_TOOL} ${GG_TARGET}${GG_ARGS}"
${GG_TOOL} ${GG_TARGET}${GG_ARGS}
echo "Running: ${GG_TOOL} ${GG_TARGET} ${GG_ARGS}"
${GG_TOOL} ${GG_TARGET} ${GG_ARGS}

artifacts:
- gitgalaxy-results_sarif.json
- gitgalaxy-results_sarif.json
Loading