57
57
runs-on : ubuntu-18.04
58
58
strategy :
59
59
matrix :
60
+ gcc_versions : [6.3.0, 8.3.0]
60
61
rpios_types : [stretch, buster]
61
62
env :
62
63
RPIOS_TYPE : ${{ matrix.rpios_types }}
64
+ GCC_VERSION : ${{ matrix.gcc_versions }}
63
65
COMPILER_TYPE : CROSS
64
66
BASE : true
65
67
steps :
74
76
chmod +x patches/curl_stfp_patcher
75
77
dos2unix utils/SF_deployer
76
78
chmod +x utils/SF_deployer
77
- dos2unix utils/SF_docs_deployer
78
- chmod +x utils/SF_docs_deployer
79
79
if : success()
80
80
- name : install
81
81
run : |
@@ -85,13 +85,13 @@ jobs:
85
85
source ~/.bashrc && echo $PATH
86
86
if : success()
87
87
- name : script
88
- run : bash build-scripts/CI/CIBB_32b -r $RPI_TYPE -o $RPIOS_TYPE
88
+ run : bash build-scripts/CI/CIBB_32b -g $GCC_VERSION - r $RPI_TYPE -o $RPIOS_TYPE
89
89
shell : bash
90
90
if : success() && (github.event_name == 'pull_request' || github.event_name == 'release' || (github.event_name == 'push' && contains(github.event.head_commit.message, '[DEBUG]')))
91
91
- name : before_script
92
92
run : bash patches/curl_stfp_patcher
93
93
shell : bash
94
- if : success()
94
+ if : success() && github.event_name == 'release' && github.event.action == 'published'
95
95
- name : deploy
96
96
run : bash utils/SF_deployer
97
97
shell : bash
@@ -121,8 +121,6 @@ jobs:
121
121
chmod +x patches/curl_stfp_patcher
122
122
dos2unix utils/SF_deployer
123
123
chmod +x utils/SF_deployer
124
- dos2unix utils/SF_docs_deployer
125
- chmod +x utils/SF_docs_deployer
126
124
if : success()
127
125
- name : install
128
126
run : |
@@ -138,7 +136,7 @@ jobs:
138
136
- name : before_script
139
137
run : bash patches/curl_stfp_patcher
140
138
shell : bash
141
- if : success()
139
+ if : success() && github.event_name == 'release' && github.event.action == 'published'
142
140
- name : deploy
143
141
run : bash utils/SF_deployer
144
142
shell : bash
@@ -168,8 +166,6 @@ jobs:
168
166
chmod +x patches/curl_stfp_patcher
169
167
dos2unix utils/SF_deployer
170
168
chmod +x utils/SF_deployer
171
- dos2unix utils/SF_docs_deployer
172
- chmod +x utils/SF_docs_deployer
173
169
if : success()
174
170
- name : install
175
171
run : |
@@ -185,7 +181,7 @@ jobs:
185
181
- name : before_script
186
182
run : bash patches/curl_stfp_patcher
187
183
shell : bash
188
- if : success()
184
+ if : success() && github.event_name == 'release' && github.event.action == 'published'
189
185
- name : deploy
190
186
run : bash utils/SF_deployer
191
187
shell : bash
0 commit comments