-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
update to 14.1 + aarch64 #69
Changes from 1 commit
de833dc
fd676de
1af5924
d9e1c3c
5b53248
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/usr/bin/env bash -ex | ||
#!/bin/bash | ||
|
||
set -ex | ||
Comment on lines
-1
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this change needed ? if so, please mention why in the commit message. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change isn't really needed, I just did it to make the file follow the same header structure as |
||
|
||
# Make sure we are not prompted for a password before running an executable in GDB on macOS | ||
if [[ $(uname) == "Darwin" ]]; then | ||
|
@@ -42,8 +44,8 @@ if [[ $(uname) == "Darwin" ]]; then | |
exit 0 | ||
fi | ||
|
||
if [[ $(uname -m) == "ppc64le" ]]; then | ||
# Skip Python test on ppc64le due to missing debug symbols | ||
if [[ $(uname -m) == "ppc64le" || $(uname -m) == "aarch64" ]]; then | ||
# Skip Python test on ppc64le/aarch64 due to missing debug symbols | ||
exit 0 | ||
fi | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this needed because
gdb
is installed in the aarch64 image ? If so, can we mention it in the commit message ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was just for debugging, I undid it in 5b53248