mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	 50fce7f255
			
		
	
	
		50fce7f255
		
	
	
	
	
		
			
			* Add script to skip tests on non master branches with only docs changes * Review comments - Use 'grep -c' instead of 'wc -l'
		
			
				
	
	
		
			23 lines
		
	
	
		
			612 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			612 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| TRAVIS_COMMIT_MESSAGE="${TRAVIS_COMMIT_MESSAGE:-none}"
 | |
| TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}"
 | |
| 
 | |
| # test force push
 | |
| #TRAVIS_COMMIT_RANGE="c287f1bfc5c8...81f62atc4c1d"
 | |
| 
 | |
| NUM_IMPACTING_CHANGES=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ecv '^(docs/)')
 | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD)
 | |
| 
 | |
| if [[ "$TRAVIS_COMMIT_MESSAGE" == *"[skip test]"* ]]; then
 | |
|     echo "Skipping due to commit message"
 | |
|     exit 0
 | |
| fi
 | |
| 
 | |
| if [ "$BRANCH" != "master" ] && [ "$NUM_IMPACTING_CHANGES" == "0" ]; then
 | |
|     echo "Skipping due to changes not impacting tests"
 | |
|     exit 0
 | |
| fi
 | |
| 
 | |
| make test:all
 |