Skip to content
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

Bez3 integration tests #526

Closed
wants to merge 43 commits into from
Closed
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0180c72
add submodule
lkunelk Jun 26, 2022
70faeb1
submodule file name change
lkunelk Jun 26, 2022
1a07ade
used trimesh to scale down triangles
lkunelk Jun 26, 2022
e640b51
make camera/imu joints fixed, generate simple box collisions
lkunelk Jun 26, 2022
5599039
submodule point to generated bez3 proto
lkunelk Jun 26, 2022
09aaa8c
remove urdf2webots submodule
lkunelk Jun 26, 2022
e57de81
temp
lkunelk Jun 26, 2022
3dd2092
make bez3 walk in pybullet
lkunelk Jun 29, 2022
7215b3e
firmware
lkunelk Jun 29, 2022
06995c3
Seperate bez13 int test (#532)
Jun 29, 2022
1c8219b
fix byte string problem
lkunelk Jun 29, 2022
25f936d
undo display/ros for test
lkunelk Jun 29, 2022
a2c6986
wip
lkunelk Jun 30, 2022
4c5982b
fix imu issue
lkunelk Jul 1, 2022
fb402b3
remove unused script
lkunelk Jul 1, 2022
335611a
fix pytest
lkunelk Jul 1, 2022
1204507
run bez3 only in 2 tests
lkunelk Jul 1, 2022
31d88f0
adjust test
lkunelk Jul 1, 2022
0c40507
add more flakyness
lkunelk Jul 1, 2022
dc68c4c
move bez3 stl files
lkunelk Jul 1, 2022
40fe92e
turn off display for CI test
lkunelk Jul 1, 2022
78feb17
Update bez3 feet (#538)
lkunelk Jul 2, 2022
38a4d22
Merge remote-tracking branch 'origin/master' into bez3-proto
lkunelk Jul 2, 2022
4bfc79c
Merge branch 'master' into bez3-proto
Jul 2, 2022
9e91472
New feet
Vuwij Jul 2, 2022
2c78ab9
Merge branch 'master' into bez3-proto
Jul 2, 2022
b72c6c4
Merge branch 'master' of github.com:utra-robosoccer/soccerbot into be…
Vuwij Jul 4, 2022
dc46aa9
Reset
Vuwij Jul 4, 2022
e1c9233
Merge remote-tracking branch 'origin/master' into bez3-proto
lkunelk Jul 5, 2022
6551033
use updated arm length
lkunelk Jul 5, 2022
f7b7b70
Merge remote-tracking branch 'origin/master' into bez3-proto
lkunelk Jul 5, 2022
ab4a3ae
bez walks slighlty faster with stable camera
lkunelk Jul 6, 2022
f11bfc6
walk faster, problem with initial step making robot turn
lkunelk Jul 6, 2022
4ceca60
add bez3 trajectories
lkunelk Jul 6, 2022
e4b3d44
get branch up to date with master
lkunelk Jul 10, 2022
4fe976d
Merge remote-tracking branch 'origin/master' into bez3-proto
lkunelk Jul 10, 2022
7e7067c
Merge branch 'master' into bez3-proto
lkunelk Jul 10, 2022
3cfd1d5
Merge branch 'master' into bez3-proto
lkunelk Jul 10, 2022
b31170f
zero standing PID and make walking slower but more stable
lkunelk Jul 10, 2022
a476e65
bez3 stands higher while walking
lkunelk Jul 11, 2022
6331f48
Various fixes for Bez 3 get up from back testing
acrylic-origami Jul 11, 2022
17c76f8
Elongate arms of Bez 3 by 10 cm
acrylic-origami Jul 11, 2022
9c92b65
Merge branch 'bez3-proto' of github.com:utra-robosoccer/soccerbot int…
acrylic-origami Jul 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/remove_old_artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Remove old artifacts

on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"

jobs:
remove-old-artifacts:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Remove old artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: "7 days"
43 changes: 42 additions & 1 deletion .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
DOCKER_BUILDKIT: 1

jobs:
test_integration:
build_docker_images:
runs-on: ubuntu-latest
timeout-minutes: 60
concurrency:
Expand All @@ -38,6 +38,47 @@ jobs:
run: |
docker-compose pull
docker-compose build --progress=plain
- name: Push test docker images
run: |
docker tag utrarobosoccer/soccerbot utrarobosoccer/soccerbot:test
docker tag utrarobosoccer/webots utrarobosoccer/webots:test
docker push utrarobosoccer/soccerbot:test
docker push utrarobosoccer/webots:test
run_integration_tests:
runs-on: ubuntu-latest
needs: build_docker_images
strategy:
fail-fast: false
matrix:
robot_model: [bez1, bez3]
timeout-minutes: 60
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ROBOT_MODEL: ${{ matrix.robot_model }}
steps:
- name: Maximize build space
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
df -h
- uses: actions/checkout@v3
with:
lfs: true
submodules: recursive
- name: Docker Login
uses: docker/login-action@v1.12.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Get Docker image
run: |
docker pull utrarobosoccer/soccerbot:test
docker pull utrarobosoccer/webots:test
docker tag utrarobosoccer/soccerbot:test utrarobosoccer/soccerbot
docker tag utrarobosoccer/webots:test utrarobosoccer/webots
- name: Walking Integration Test
run: |
docker-compose -f docker-compose.test.yaml up --exit-code-from friendly
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
[![Docker Image Size](https://badgen.net/docker/size/utrarobosoccer/soccerbot?icon=docker&label=image%20size)](https://hub.docker.com/r/utrarobosoccer/soccerbot/)
[![Docker Pulls](https://badgen.net/docker/pulls/utrarobosoccer/soccerbot?icon=docker&label=pulls)](https://hub.docker.com/r/utrarobosoccer/soccerbot/)


The initial efforts to form new team within UTRA began summer 2016. However, it was not until summer 2017 that we were well-defined and the creation of our robots from scratch began. Following some recruitment around that time, our team had a small number of members split across three subsystems: mechanical, electrical and software. Later that summer, the embedded subsystem (microcontroller software), emerged out of the electrical subsystem, and the control subsystem was formed to focus on bipedal locomotion.
The initial efforts to form new team within UTRA began summer 2016. However, it was not until summer 2017 that we were well-defined and the creation of our robots from scratch began. Following some recruitment around that time, our team had a small number of members split across three subsystems: mechanical, electrical and software. Later that summer, the embedded subsystem (microcontroller firmware), emerged out of the electrical subsystem, and the control subsystem was formed to focus on bipedal locomotion.

By the end of 2017, our team grew to more than 20 members, all engineering undergraduates at the University of Toronto. Around that time, we were highly focused on achieving the basic requirements to qualify for the 2018 RoboCup competition in Montreal that upcoming summer. After several sleepless February nights, the video below was produced along with a concise paper.

Expand Down
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_2.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_3.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_4.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_Mirror__1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/25t-servo-hub_Mirror__2.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/Component32_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_11.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_12.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_13.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_14.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_15.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_16.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_17.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_18.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_19.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_8.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/JX_servo_v12_9.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/TX2_board_v2_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/base_link.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/camera-link_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/camera_1.stl
Git LFS file not shown
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/elbow-attach_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/elbow-attach_Mirror__1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/elbow-bearing_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/elbow-bearing_Mirror__1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_3.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_4.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_5.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_Mirror__1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/gobilda-servo_Mirror__2.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/head_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/imu-link_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_bicep_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_calve_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_foot_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_forearm_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_hip_front_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_hip_front_2.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_hip_side_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/left_thigh_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/neck_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_ankle_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_ankle_2.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_bicep_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_calve_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_foot_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_forearm_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_hip_side_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/right_thigh_1.stl
Git LFS file not shown
2 changes: 1 addition & 1 deletion bez3_description/meshes/torso_1.stl
Git LFS file not shown
Loading