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:
parent
60016e2cf2
commit
b8bd8ac702
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user