Skip to content

Commit

Permalink
Split AppVeyor command to avoid build failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerEnderlein committed Dec 7, 2023
1 parent 2d60969 commit 627e3d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ environment:
install:
- sh: |
cd $APPVEYOR_BUILD_FOLDER
if [ "$COMPILER_ID" != "clang" ]; then sudo apt-get -y update && sudo apt-get -y install gcc-multilib g++-multilib libpng-dev libjpeg-dev libgif-dev libtiff-dev libogg-dev libvorbis-dev libsndfile-dev zlib1g-dev; fi
if [ "$COMPILER_ID" != "clang" ]; then sudo apt-get -y update; fi
if [ "$COMPILER_ID" != "clang" ]; then sudo apt-get -y install gcc-multilib g++-multilib libpng-dev libjpeg-dev libgif-dev libtiff-dev libogg-dev libvorbis-dev libsndfile-dev zlib1g-dev; fi
if [ "$COMPILER_ID" = "clang" ]; then brew install jpeg giflib libtiff libogg libvorbis libsndfile zlib; fi
- cmd: |
cd %APPVEYOR_BUILD_FOLDER%
Expand Down

0 comments on commit 627e3d9

Please sign in to comment.