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

Try fix gcc-10 push #4425

Merged
merged 1 commit into from
Apr 12, 2024
Merged
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
16 changes: 8 additions & 8 deletions .github/chatops-gen-matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,11 @@ json_include(){
MATRIX="$(echo "$MATRIX" | sed '/^$/d' | sort -uV)"
echo "$MATRIX"

echo "$MATRIX" | json_include >matrix
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/' | json_include >matrix_ubuntu
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /release/' | json_include >matrix_ubuntu_release
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /debug/' | json_include >matrix_ubuntu_debug
echo "$MATRIX" | awk -v IGNORECASE=1 '/macos/' | json_include >matrix_macos
echo "$MATRIX" | awk -v IGNORECASE=1 '/windows/' | json_include >matrix_windows
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /release/ && /gcc-9/' | json_include >matrix_dockerimage_release
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /debug/ && /gcc-9/' | json_include >matrix_dockerimage_debug
echo "$MATRIX" | json_include >matrix
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/' | json_include >matrix_ubuntu
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /release/' | json_include >matrix_ubuntu_release
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /debug/' | json_include >matrix_ubuntu_debug
echo "$MATRIX" | awk -v IGNORECASE=1 '/macos/' | json_include >matrix_macos
echo "$MATRIX" | awk -v IGNORECASE=1 '/windows/' | json_include >matrix_windows
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /release/ && /gcc-10/' | json_include >matrix_dockerimage_release
echo "$MATRIX" | awk -v IGNORECASE=1 '/ubuntu/ && /debug/ && /gcc-10/' | json_include >matrix_dockerimage_debug
Loading