Skip to content

Commit

Permalink
Updated CI script.
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerEnderlein committed Mar 21, 2020
1 parent ce9e2a2 commit f87002a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,17 @@ environment:

install:
- sh: |
sudo apt-get -y update
cd $APPVEYOR_BUILD_FOLDER
if [ "$CMAKE_PLATFORM" == "x86" ]
then
sudo apt-get install freeglut3-dev:i386 -y
sudo apt-get -y install freeglut3-dev:i386
elif [ "$CMAKE_PLATFORM" == "x64" ]
then
sudo apt-get install freeglut3-dev -y
sudo apt-get -y install freeglut3-dev
fi
sudo apt-get install gcc-multilib -y
sudo apt-get install g++-multilib -y
sudo apt-get -y install gcc-multilib
sudo apt-get -y install g++-multilib
- cmd: |
if "%CMAKE_GENERATOR%" == "MSYS Makefiles" set PATH=C:\msys64\%COMPILER_ID%\bin;C:\msys64\usr\bin\;%PATH%
cd %APPVEYOR_BUILD_FOLDER%
Expand Down

0 comments on commit f87002a

Please sign in to comment.