-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
chore(ci): fix arm workflows + minor CI cleanup #8436
Conversation
# go env settings | ||
export GOPATH=~/go | ||
# move the binary | ||
cp dgraph/dgraph ~/go/bin | ||
# build the test binary | ||
cd t; go build . |
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.
the go build .
is needed right?
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.
We are calling it in the previous step (around line 50)
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.
^+1
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.
replicate to all yaml?
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.
Looks good 👍
@joshua-goldstein you need 2 +1's because of the perm changes. @meghalims / @matthewmcneely - could one of you do a quick review? This is quite straightforward IMO. |
Problem
Arm tests were failing because skip list was not being parsed correctly by t.go. We also perform some cleanup on the CI workflows (there was some redundancy in CI scripts).
Solution
We pass
as an argument to t.go. Failures in these packages are related to minio and lambda which we will work on resolving. We also do some cleanup on the workflow file.