Skip to content

Commit

Permalink
Fix additional maps link
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Jun 12, 2024
1 parent f960ba8 commit b8623e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/carlasim-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ env:
IMAGE_NAME: bounverif/carla
CARLA_VERSION: 0.9.15

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
server-build:
runs-on: ubuntu-latest
Expand All @@ -24,7 +28,7 @@ jobs:
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
tool-cache: true

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
Expand Down Expand Up @@ -55,6 +59,8 @@ jobs:
"CARLA_VERSION=${{ env.CARLA_VERSION }}"
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:release-${{ env.CARLA_VERSION }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and push extended image
uses: docker/build-push-action@v5
Expand All @@ -65,3 +71,5 @@ jobs:
"CARLA_VERSION=${{ env.CARLA_VERSION }}"
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:release-extra-${{ env.CARLA_VERSION }}
push: true
# cache-from: type=gha
# cache-to: type=gha,mode=max
2 changes: 2 additions & 0 deletions carlasim/release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ ARG CARLA_VERSION=0.9.15
ARG CARLA_RELEASE_SERVER=https://carla-releases.s3.us-east-005.backblazeb2.com/Linux
ARG CARLA_RELEASE_TAR=CARLA_${CARLA_VERSION}.tar.gz
ARG CARLA_RELEASE_URL=${CARLA_RELEASE_SERVER}/${CARLA_RELEASE_TAR}
ARG CARLA_ADDITIONAL_MAPS_TAR=AdditionalMaps_${CARLA_VERSION}.tar.gz
ARG CARLA_ADDITIONAL_MAPS_URL=${CARLA_RELEASE_SERVER}/${CARLA_ADDITIONAL_MAPS_TAR}

ENV DEBIAN_FRONTEND=noninteractive
ENV PIP_NO_CACHE_DIR=true
Expand Down

0 comments on commit b8623e8

Please sign in to comment.