Skip to content

Commit

Permalink
CI : Fix container
Browse files Browse the repository at this point in the history
  • Loading branch information
rcywongaa committed Oct 6, 2024
1 parent 5150d03 commit a278b69
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /home
RUN <<EOF
apt-get update
apt-get install -y --no-install-recommends \
ca-certificates gnupg lsb-release wget
ca-certificates gnupg lsb-release wget curl
wget -qO- https://drake-apt.csail.mit.edu/drake.asc | gpg --dearmor - \
| sudo tee /etc/apt/trusted.gpg.d/drake.gpg >/dev/null
echo "deb [arch=amd64] https://drake-apt.csail.mit.edu/$(lsb_release -cs) $(lsb_release -cs) main" \
Expand All @@ -27,6 +27,11 @@ RUN <<EOF
pip3 install pybullet --upgrade
EOF

# Install rust
RUN <<EOF
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
EOF

# Install ROS dependencies
# Remember to mount else rosdep won't find any dependencies!
RUN \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_run_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
generate-paths:
runs-on: ubuntu-latest
container: hub.docker.com/rcywongaa/topologically_distinct_guesses:latest
container: rcywongaa/topologically_distinct_guesses:latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -134,13 +134,13 @@ jobs:
with:
name: trajectory0_opt.html
path: pages

- name: Download trajectory1_opt.html
uses: actions/download-artifact@v4
with:
name: trajectory1_opt.html
path: pages

- name: Download trajectory2_opt.html
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_run_publish_combined.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
generate-paths:
runs-on: ubuntu-latest
container: hub.docker.com/rcywongaa/topologically_distinct_guesses:latest
container: rcywongaa/topologically_distinct_guesses:latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down

0 comments on commit a278b69

Please sign in to comment.