Skip to content

Commit

Permalink
Issue #4103: workaround for failing autobuild with rel-11_0_7
Browse files Browse the repository at this point in the history
Build with Locale::CLDR 0.46.0 instead of Locale::CLDR 0.44.1
  • Loading branch information
bschmalhofer committed Jan 24, 2025
1 parent fe5fc8c commit 191f647
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/docker_image_update_autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,15 @@ jobs:
if: steps.check.outputs.needs-updating == 'true'
run: echo "otobo_commit=$(git log -1 '--format=format:%H')" >> $GITHUB_ENV

-
# a workaround for a build failure for the 11.0.7 release
# see https://github.com/RotherOSS/otobo/issues/4103
# can't use github.sha here as we need the commit of the checked out branch
name: 'use Locale::CLDR 0.46.1 for building OTOBO 11.0.7'
if: ${{ steps.check.outputs.needs-updating == 'true' && matrix.target == 'otobo-web' && matrix.patch == 'rel-11.0.7' }}
run: |
sed -i.bak -e 's/0.44.1/0.46.0/' cpanfile.docker
-
# build the image, not pushing yet, no pushing as DockerHub access is not set up yet
# Caching with Github Actions Cache, limited to 10 GB
Expand Down

0 comments on commit 191f647

Please sign in to comment.