Lines Matching +full:check +full:- +full:system +full:- +full:ubuntu

18 3. Clone openbmc-build-scripts repository.
20 `git clone https://github.com/openbmc/openbmc-build-scripts`
22 4. Change directory to openbmc-build-scripts.
24 `cd openbmc-build-scripts`
28 "openbmc/ubuntu-robot-qemu". You can check images using "docker images"
31 `./scripts/build-qemu-robot-docker.sh`
36 --build-arg http_proxy=<IP>:<PORT> --build-arg https_proxy=<IP>:<PORT>
45 2. Clone openbmc-test-automation repository.
47 `git clone https://github.com/openbmc/openbmc-test-automation`
54 docker run --user root \
55 --env HOME=${HOME} \
56 --workdir ${HOME} \
57 --volume ${HOME}/OpenBMC_Automation:${HOME} \
58 --tty openbmc/ubuntu-robot-qemu python -m robot \
59 -v OPENBMC_HOST:<BMC IP> \
60 -v FILE_PATH:<BMC_IMG_PATH> \
61 -i Initiate_Code_Update_BMC \
62 ${HOME}/openbmc-test-automation/extended/code_update/update_bmc.robot
65 Example to run BMC code update using witherspoon-20170614071422.all.tar image
66 file from HOME directory of the system where docker run command is executed:
69 docker run --user root \
70 --env HOME=${HOME} \
71 --workdir ${HOME} \
72 --volume ${HOME}/OpenBMC_Automation:${HOME} \
73 --tty openbmc/ubuntu-robot-qemu python -m robot \
74 -v OPENBMC_HOST:1.11.222.333 \
75 -v FILE_PATH:/home/witherspoon-20170614071422.all.tar \
76 -i Initiate_Code_Update_BMC \
77 ${HOME}/openbmc-test-automation/extended/code_update/update_bmc.robot
93 ###### _Note: This runs a Docker container using openbmc/ubuntu-robot-qemu image._
95 ###### _Robot test code is extracted and ran on this container using run-robot.sh script._
98 docker run --user root \
99 --env HOME=${HOME} \
100 --env IP_ADDR=<BMC IP> \
101 --env SSH_PORT=22 \
102 --env HTTPS_PORT=443 \
103 --env ROBOT_TEST_CMD="tox -e <System Type> -- <Robot Cmd>" \
104 --workdir ${HOME} \
105 --volume ${WORKSPACE}:${HOME} \
106 --tty openbmc/ubuntu-robot-qemu \
107 ${HOME}/openbmc-build-scripts/scripts/run-robot.sh
113 docker run --user root \
114 --env HOME=${HOME} \
115 --env IP_ADDR=1.11.222.333 \
116 --env SSH_PORT=22 \
117 --env HTTPS_PORT=443 \
118 --env ROBOT_TEST_CMD="tox -e witherspoon -- tests" \
119 --workdir ${HOME} \
120 --volume ${HOME}/OpenBMC_Automation:${HOME} \
121 --tty openbmc/ubuntu-robot-qemu \
122 ${HOME}/openbmc-build-scripts/scripts/run-robot.sh