mirror of
				https://github.com/Klipper3d/klipper.git
				synced 2025-10-31 10:25:57 +01:00 
			
		
		
		
	The more.musl.cc site is blocking downloads from all github actions, which makes it difficult to use that site for the ar100 cross build toolchain. Convert to the openrisc or1k-elf toolchain as a replacement. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Test script for continuous integration.
 | |
| 
 | |
| # Stop script early on any error; check variables
 | |
| set -eu
 | |
| 
 | |
| # Paths to tools installed by ci-install.sh
 | |
| MAIN_DIR=${PWD}
 | |
| BUILD_DIR=${PWD}/ci_build
 | |
| export PATH=${BUILD_DIR}/pru-elf/bin:${PATH}
 | |
| export PATH=${BUILD_DIR}/or1k-elf/bin:${PATH}
 | |
| PYTHON=${BUILD_DIR}/python-env/bin/python
 | |
| PYTHON2=${BUILD_DIR}/python2-env/bin/python
 | |
| 
 | |
| 
 | |
| ######################################################################
 | |
| # Section grouping output message helpers
 | |
| ######################################################################
 | |
| 
 | |
| start_test()
 | |
| {
 | |
|     echo "::group::=============== $1 $2"
 | |
|     set -x
 | |
| }
 | |
| 
 | |
| finish_test()
 | |
| {
 | |
|     set +x
 | |
|     echo "=============== Finished $2"
 | |
|     echo "::endgroup::"
 | |
| }
 | |
| 
 | |
| 
 | |
| ######################################################################
 | |
| # Check for whitespace errors
 | |
| ######################################################################
 | |
| 
 | |
| start_test check_whitespace "Check whitespace"
 | |
| ./scripts/check_whitespace.sh
 | |
| finish_test check_whitespace "Check whitespace"
 | |
| 
 | |
| 
 | |
| ######################################################################
 | |
| # Run compile tests for several different MCU types
 | |
| ######################################################################
 | |
| 
 | |
| DICTDIR=${BUILD_DIR}/dict
 | |
| mkdir -p ${DICTDIR}
 | |
| 
 | |
| for TARGET in test/configs/*.config ; do
 | |
|     start_test mcu_compile "$TARGET"
 | |
|     make clean
 | |
|     make distclean
 | |
|     unset CC
 | |
|     cp ${TARGET} .config
 | |
|     make olddefconfig
 | |
|     make V=1
 | |
|     size out/*.elf
 | |
|     ./scripts/check-software-div.sh .config out/*.elf
 | |
|     finish_test mcu_compile "$TARGET"
 | |
|     cp out/klipper.dict ${DICTDIR}/$(basename ${TARGET} .config).dict
 | |
| done
 | |
| 
 | |
| 
 | |
| ######################################################################
 | |
| # Verify klippy host software
 | |
| ######################################################################
 | |
| 
 | |
| start_test klippy "Test klippy import (Python3)"
 | |
| $PYTHON klippy/klippy.py --import-test
 | |
| finish_test klippy "Test klippy import (Python3)"
 | |
| 
 | |
| start_test klippy "Test klippy import (Python2)"
 | |
| $PYTHON2 klippy/klippy.py --import-test
 | |
| finish_test klippy "Test klippy import (Python2)"
 | |
| 
 | |
| start_test klippy "Test invoke klippy (Python3)"
 | |
| $PYTHON scripts/test_klippy.py -d ${DICTDIR} test/klippy/*.test
 | |
| finish_test klippy "Test invoke klippy (Python3)"
 | |
| 
 | |
| start_test klippy "Test invoke klippy (Python2)"
 | |
| $PYTHON2 scripts/test_klippy.py -d ${DICTDIR} test/klippy/*.test
 | |
| finish_test klippy "Test invoke klippy (Python2)"
 |