mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Travis: Remove use of sudo to enable use container-based builds
This commit is contained in:
		
							parent
							
								
									ac7bc214ab
								
							
						
					
					
						commit
						73b6a715ee
					
				
					 4 changed files with 28 additions and 10 deletions
				
			
		|  | @ -11,8 +11,12 @@ fi | ||||||
| 
 | 
 | ||||||
| #if OS is linux or is not set | #if OS is linux or is not set | ||||||
| if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | ||||||
|  |     export CC=gcc-4.9 | ||||||
|  |     export CXX=g++-4.9 | ||||||
|  |     export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH | ||||||
|  | 
 | ||||||
|     mkdir build && cd build |     mkdir build && cd build | ||||||
|     cmake -DUSE_QT5=OFF .. |     cmake -DCITRA_FORCE_QT4=ON .. | ||||||
|     make -j4 |     make -j4 | ||||||
| elif [ "$TRAVIS_OS_NAME" = "osx" ]; then | elif [ "$TRAVIS_OS_NAME" = "osx" ]; then | ||||||
|     export Qt5_DIR=$(brew --prefix)/opt/qt5 |     export Qt5_DIR=$(brew --prefix)/opt/qt5 | ||||||
|  |  | ||||||
|  | @ -5,24 +5,24 @@ set -x | ||||||
| 
 | 
 | ||||||
| #if OS is linux or is not set | #if OS is linux or is not set | ||||||
| if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | ||||||
|     sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y |     export CC=gcc-4.9 | ||||||
|     sudo apt-get -qq update |     export CXX=g++-4.9 | ||||||
|     sudo apt-get -qq install g++-4.9 xorg-dev libglu1-mesa-dev libxcursor-dev | 
 | ||||||
|     sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 90 |     mkdir -p $HOME/.local | ||||||
|     ( |     ( | ||||||
|         git clone https://github.com/glfw/glfw.git --branch 3.0.4 --depth 1 |         git clone https://github.com/glfw/glfw.git --branch 3.0.4 --depth 1 | ||||||
|         mkdir glfw/build && cd glfw/build |         mkdir glfw/build && cd glfw/build | ||||||
|         cmake -DBUILD_SHARED_LIBS=ON \ |         cmake -DBUILD_SHARED_LIBS=ON \ | ||||||
|               -DGLFW_BUILD_EXAMPLES=OFF \ |               -DGLFW_BUILD_EXAMPLES=OFF \ | ||||||
|               -DGLFW_BUILD_TESTS=OFF \ |               -DGLFW_BUILD_TESTS=OFF \ | ||||||
|  |               -DCMAKE_INSTALL_PREFIX=$HOME/.local \ | ||||||
|               .. |               .. | ||||||
|         make -j4 && sudo make install |         make -j4 && make install | ||||||
|     ) |     ) | ||||||
| 
 | 
 | ||||||
|     sudo apt-get install lib32stdc++6 |  | ||||||
|     sudo mkdir -p /usr/local |  | ||||||
|     curl http://www.cmake.org/files/v2.8/cmake-2.8.11-Linux-i386.tar.gz \ |     curl http://www.cmake.org/files/v2.8/cmake-2.8.11-Linux-i386.tar.gz \ | ||||||
|         | sudo tar -xz -C /usr/local --strip-components=1 |         | tar -xz -C $HOME/.local --strip-components=1 | ||||||
|  | 
 | ||||||
| elif [ "$TRAVIS_OS_NAME" = "osx" ]; then | elif [ "$TRAVIS_OS_NAME" = "osx" ]; then | ||||||
|     brew tap homebrew/versions |     brew tap homebrew/versions | ||||||
|     brew install qt5 glfw3 pkgconfig |     brew install qt5 glfw3 pkgconfig | ||||||
|  |  | ||||||
|  | @ -7,7 +7,6 @@ if [ "$TRAVIS_BRANCH" = "master" ]; then | ||||||
|         UPLOAD_DIR="/citra/nightly/linux-amd64" |         UPLOAD_DIR="/citra/nightly/linux-amd64" | ||||||
|         mkdir "$REV_NAME" |         mkdir "$REV_NAME" | ||||||
| 
 | 
 | ||||||
|         sudo apt-get -qq install lftp |  | ||||||
|         cp build/src/citra/citra "$REV_NAME" |         cp build/src/citra/citra "$REV_NAME" | ||||||
|         cp build/src/citra_qt/citra-qt "$REV_NAME" |         cp build/src/citra_qt/citra-qt "$REV_NAME" | ||||||
|     elif [ "$TRAVIS_OS_NAME" = "osx" ]; then |     elif [ "$TRAVIS_OS_NAME" = "osx" ]; then | ||||||
|  |  | ||||||
							
								
								
									
										15
									
								
								.travis.yml
									
										
									
									
									
								
							
							
						
						
									
										15
									
								
								.travis.yml
									
										
									
									
									
								
							|  | @ -8,6 +8,21 @@ env: | ||||||
|   global: |   global: | ||||||
|     - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" |     - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" | ||||||
| 
 | 
 | ||||||
|  | sudo: false | ||||||
|  | 
 | ||||||
|  | addons: | ||||||
|  |   apt: | ||||||
|  |     sources: | ||||||
|  |       - ubuntu-toolchain-r-test | ||||||
|  |     packages: | ||||||
|  |       - gcc-4.9 | ||||||
|  |       - g++-4.9 | ||||||
|  |       - xorg-dev | ||||||
|  |       - libglu1-mesa-dev | ||||||
|  |       - libxcursor-dev | ||||||
|  |       - lib32stdc++6 # For CMake | ||||||
|  |       - lftp # To upload builds | ||||||
|  | 
 | ||||||
| before_install: | before_install: | ||||||
|  - sh .travis-deps.sh |  - sh .travis-deps.sh | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue