File tree 3 files changed +11
-199
lines changed
3 files changed +11
-199
lines changed Original file line number Diff line number Diff line change @@ -147,9 +147,6 @@ jobs:
147
147
- run :
148
148
name : sha-sum packages
149
149
command : ' go run build.go sha-dist'
150
- - run :
151
- name : Build Grafana.com master publisher
152
- command : ' go build -o scripts/publish scripts/build/publish.go'
153
150
- run :
154
151
name : Test and build Grafana.com release publisher
155
152
command : ' cd scripts/build/release_publisher && go test . && go build -o release_publisher .'
@@ -158,7 +155,6 @@ jobs:
158
155
paths :
159
156
- dist/grafana*
160
157
- scripts/*.sh
161
- - scripts/publish
162
158
- scripts/build/release_publisher/release_publisher
163
159
- scripts/build/publish.sh
164
160
@@ -393,7 +389,7 @@ jobs:
393
389
name : Publish to Grafana.com
394
390
command : |
395
391
rm dist/grafana-master-$(echo "${CIRCLE_SHA1}" | cut -b1-7).linux-x64.tar.gz
396
- . /scripts/publish -apiKey ${GRAFANA_COM_API_KEY}
392
+ cd dist && .. /scripts/build/release_publisher/release_publisher -apikey ${GRAFANA_COM_API_KEY} -from-local
397
393
398
394
deploy-release :
399
395
docker :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -127,11 +127,21 @@ var completeBuildArtifactConfigurations = []buildArtifact{
127
127
arch : "armv7" ,
128
128
urlPostfix : "_armhf.deb" ,
129
129
},
130
+ {
131
+ os : "deb" ,
132
+ arch : "armv6" ,
133
+ urlPostfix : "_armel.deb" ,
134
+ },
130
135
{
131
136
os : "rhel" ,
132
137
arch : "armv7" ,
133
138
urlPostfix : ".armhfp.rpm" ,
134
139
},
140
+ {
141
+ os : "linux" ,
142
+ arch : "armv6" ,
143
+ urlPostfix : ".linux-armv6.tar.gz" ,
144
+ },
135
145
{
136
146
os : "linux" ,
137
147
arch : "armv7" ,
You can’t perform that action at this time.
0 commit comments