-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Remove live-test build #13321
Remove live-test build #13321
Conversation
.github/workflows/buildsCI.yaml
Outdated
@@ -302,8 +302,7 @@ jobs: | |||
continue-on-error: true | |||
run: | | |||
export LRS_LOG_LEVEL="DEBUG"; | |||
cd build/${{env.LRS_RUN_CONFIG}}/ | |||
./live-test -d yes -i [software-device] | |||
cd build/${{env.LRS_RUN_CONFIG}}/ |
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.
@noacoohen, do we need U20_U24_ST_Py_EX_CfU_LiveTest
section, if no live tests are ran?
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.
BTW the name is wrong right? Its U22 U24?
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.
@Arun-Prasad-V ,This is the only build that compiles Ubuntu with Examples & Tools or with Check for Updates so I didn't remove 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.
@Nir-Az, yes, I'll change 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.
@noacoohen, okay got it. Then, does it make sense to remove _LiveTest
from the name and also remove the Test
section if we are not going to test anything?
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.
Done
.github/workflows/buildsCI.yaml
Outdated
continue-on-error: true | ||
run: | | ||
export LRS_LOG_LEVEL="DEBUG"; | ||
cd build/${{env.LRS_RUN_CONFIG}}/ | ||
|
||
- name: Upload RS log artifact |
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.
IMO since the test step dropped, we will have no log artifact and this stage can be deleted as well, 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.
Agreed, removed
.github/workflows/buildsCI.yaml
Outdated
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Log file - ${{ matrix.name }}_ST_Py_EX_CfU_LiveTest | ||
path: build/${{env.LRS_RUN_CONFIG}}/*.log | ||
|
||
- name: Provide correct exit status for job |
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.
Sorry but I just noticed the last stage which is also not needed :)
No more tests
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
Remove remaining code related to legacy-live-tests
Tracked by LRS-1173