mirror of
				https://github.com/TheLartians/ModernCppStarter.git
				synced 2025-10-31 02:01:33 +01:00 
			
		
		
		
	New test
New test Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
		
							parent
							
								
									ed48742468
								
							
						
					
					
						commit
						19c735c523
					
				
					 2 changed files with 26 additions and 18 deletions
				
			
		
							
								
								
									
										20
									
								
								.github/workflows/dockcross.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/dockcross.yml
									
										
									
									
										vendored
									
									
								
							|  | @ -68,21 +68,5 @@ jobs: | ||||||
|         with: |         with: | ||||||
|           submodules: "recursive" |           submodules: "recursive" | ||||||
|           fetch-depth: 0 |           fetch-depth: 0 | ||||||
|       - name: "Pull ${{ matrix.image_name }}..." |       - name: "build" | ||||||
|         run: docker pull dockcross/${{ matrix.image_name }} |         run: ./tools/dockcross-cmake-builder.sh ${{ matrix.image_name }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | ||||||
|       - name: "Make script" |  | ||||||
|         run: | |  | ||||||
|           docker run --rm dockcross/${{ matrix.image_name }} > ./dockcross-${{ matrix.image_name }} |  | ||||||
|           chmod +x ./dockcross-${{ matrix.image_name }} |  | ||||||
|       - name: "Make script" |  | ||||||
|         run: | |  | ||||||
|               ls |  | ||||||
|               pwd |  | ||||||
|       - name: "Config CMakefile" |  | ||||||
|         run: ./dockcross-${{ matrix.image_name }} cmake -B dockcross-${{ matrix.image_name }} -S . -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} |  | ||||||
|       - name: "Build" |  | ||||||
|         run: ./dockcross-${{ matrix.image_name }} ninja -C dockcross-${{ matrix.image_name }} |  | ||||||
|       - name: "Test" |  | ||||||
|         run: | |  | ||||||
|           cd dockcross-${{ matrix.image_name }} |  | ||||||
|           ./dockcross-${{ matrix.image_name }} ctest --build-config ${{ matrix.build_type }} |  | ||||||
|  |  | ||||||
							
								
								
									
										24
									
								
								tools/dockcross-cmake-builder.sh
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										24
									
								
								tools/dockcross-cmake-builder.sh
									
										
									
									
									
										Executable file
									
								
							|  | @ -0,0 +1,24 @@ | ||||||
|  | #!/usr/bin/env bash | ||||||
|  | 
 | ||||||
|  | if (( $# >= 1 )); then | ||||||
|  |     image=$1 | ||||||
|  |     build_file=build-${image%:*} | ||||||
|  |     shift 1 | ||||||
|  | 
 | ||||||
|  |     cmake_arg=$@ | ||||||
|  |     echo "cmake arg: $cmake_arg" | ||||||
|  | 
 | ||||||
|  |     #echo "Pulling dockcross/$image" | ||||||
|  |     #docker pull dockcross/"$image" | ||||||
|  | 
 | ||||||
|  |     echo "Make script dockcross-$image" | ||||||
|  |     docker run --rm dockcross/"$image" > ./dockcross-"$image" | ||||||
|  |     chmod +x ./dockcross-"$image" | ||||||
|  | 
 | ||||||
|  |     echo "Build $build_file" | ||||||
|  |     ./dockcross-"$image" cmake -B "$build_file" -S . -G Ninja $cmake_arg | ||||||
|  |     ./dockcross-"$image" ninja -C "$build_file" | ||||||
|  | else | ||||||
|  |     echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <cmake arg.>" | ||||||
|  |     exit 1 | ||||||
|  | fi | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue