update multi-gcc action to be on push to develop or main (#1197)
* make multi-gcc workflow on-demand only * actually run multi-gcc after merge * update yml generator for Multi GCC too
This commit is contained in:
		@ -35,7 +35,12 @@ gcc_versions_sorted = OrderedDict(sorted(gcc_versions.items(), key=lambda item:
 | 
				
			|||||||
# Create output
 | 
					# Create output
 | 
				
			||||||
output = '''
 | 
					output = '''
 | 
				
			||||||
name: Multi GCC
 | 
					name: Multi GCC
 | 
				
			||||||
on: [workflow_dispatch, push, pull_request]
 | 
					on:
 | 
				
			||||||
 | 
					  workflow_dispatch:
 | 
				
			||||||
 | 
					  push:
 | 
				
			||||||
 | 
					    branches:
 | 
				
			||||||
 | 
					      - 'develop'
 | 
				
			||||||
 | 
					      - 'master'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user