-
Notifications
You must be signed in to change notification settings - Fork 40
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
Setup kokoro #179
Setup kokoro #179
Conversation
Signed-off-by: Rafal Kapuscik <rkapuscik@antmicro.com>
Signed-off-by: Rafal Kapuscik <rkapuscik@antmicro.com>
@@ -0,0 +1,38 @@ | |||
#!/usr/bin/env python3 |
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 repo's config is simple enough you don't really need a Python script to generate it.
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.
Removed.
echo "----------------------------------------" | ||
cat /proc/meminfo | ||
echo "----------------------------------------" | ||
export MEM_GB=$(($(awk '/MemTotal/ {print $2}' /proc/meminfo)/(1024*1024))) |
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.
You probably don't need this memory calculation stuff.
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.
Removed.
export BUILD_TOOL=make | ||
fi | ||
|
||
export CC=gcc-7 |
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.
It would be good to know which compiler you want to use.
# Generated from .github/kokoro/kokoro-cfg.py | ||
# To regenerate run: | ||
# cd .github/kokoro/ && python3 kokoro-cfg.py | ||
build_file: "UHDM-continuous-test/.github/kokoro/test.sh" |
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.
I'm pretty sure this file path is wrong?
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.
Fixed, I was looking at wrong commit in other repo.
Fixes #178.