Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix generate comment diff processor build failure #10164

Merged
merged 22 commits into from
Mar 13, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c32bac6
Refactored generate_comment to continue in the face of errors
melinath Mar 11, 2024
3c361a6
Moved to structured data for diffs
melinath Mar 11, 2024
7bb79f1
Added basic tests for comment formatting
melinath Mar 11, 2024
46f1da8
Skipped missing tests and breaking changes if repo failed to clone
melinath Mar 11, 2024
596d1eb
Force generation
melinath Mar 11, 2024
fb04ad4
Breaking change
melinath Mar 11, 2024
856bd74
Fixed error display in diff comment
melinath Mar 11, 2024
cfb5ab5
Marked diff-processor targets as not being real files
melinath Mar 11, 2024
3a2960e
Added PATH to diffProcessorEnv
melinath Mar 11, 2024
53cc86d
Fixed formatting for error sections
melinath Mar 11, 2024
210d246
Cleaned up passthrough env var usage
melinath Mar 11, 2024
0ca59a5
Made exec.sh exit 1 if there are any errors running the magician
melinath Mar 11, 2024
168b050
Don't error on initial build of the magician binary
melinath Mar 12, 2024
c7d7082
Added missing env var for diff processor build
melinath Mar 12, 2024
fcb65f1
Force generation of tf-oics
melinath Mar 12, 2024
9838115
Revert "Force generation of tf-oics"
melinath Mar 12, 2024
942a2dd
Revert "Force generation"
melinath Mar 12, 2024
c5e1118
Revert "Breaking change"
melinath Mar 12, 2024
90e664a
Force missing test run
melinath Mar 12, 2024
34f7d16
force missing tests to run - take 2
melinath Mar 13, 2024
ba4e8de
Revert "force missing tests to run - take 2"
melinath Mar 13, 2024
a56056e
Revert "Force missing test run"
melinath Mar 13, 2024
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
Prev Previous commit
Next Next commit
Made exec.sh exit 1 if there are any errors running the magician
  • Loading branch information
melinath committed Mar 11, 2024
commit 0ca59a54ac7b4fae1a0752a927ad69ec97932151
4 changes: 3 additions & 1 deletion .ci/scripts/go-plus/magician/exec.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

# Get the directory of the current script
DIR="$(dirname $(realpath $0))"

Expand All @@ -20,7 +22,7 @@ fi
# If there are no arguments only compile the binary
if [ "$#" -eq 0 ]; then
echo "No arguments provided"
exit 0
exit 1
fi

# Run the binary and pass all arguments
Expand Down
Loading