Skip to content

Commit

Permalink
Update cuda and carla defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
faizansana committed Feb 24, 2024
1 parent 97457c2 commit d547e71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
cuda: ["12.0.0"]
carla: ["0.9.10.1", "0.9.13"]
carla: ["0.9.10.1"]
runs-on: ubuntu-latest
steps:
- name: Reclaim disk space as specified at https://github.com/actions/runner-images/issues/2840
Expand Down
2 changes: 1 addition & 1 deletion dev_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ CARLA_DEBUG_SERVER_REPLICAS=${CARLA_DEBUG_SERVER_REPLICAS:-"1"}


## -------------------------- CUDA Version ------------------------
CUDA_VERSION=${CUDA_VERSION:-"11.8.0"}
CUDA_VERSION=${CUDA_VERSION:-"12.0.0"}


## -------------------------- Write to .env -----------------------
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG CARLA_VERSION=0.9.13
ARG CARLA_VERSION=0.9.10.1
ARG CUDA_VERSION=12.0.0
FROM carlasim/carla:${CARLA_VERSION} AS carla

ARG CUDA_VERSION=12.0.0
FROM nvidia/cuda:${CUDA_VERSION}-base-ubuntu22.04 AS base
SHELL [ "/bin/bash", "-c" ]

ARG CARLA_VERSION=0.9.13
ARG CARLA_VERSION=0.9.10.1

ENV DEBIAN_FRONTEND noninteractive
ENV CARLA_VERSION $CARLA_VERSION
Expand Down

0 comments on commit d547e71

Please sign in to comment.