Skip to content

Commit 9eae8e7

Browse files
Build snapcraft using snapcore/action-build
1 parent 8f910c4 commit 9eae8e7

File tree

4 files changed

+13
-29
lines changed

4 files changed

+13
-29
lines changed

.github/workflows/builder.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- "Makefile"
1111
- "build/**"
1212
- ".github/workflows/builder.yml"
13+
- "snapcraft.yaml"
1314
pull_request:
1415
branches: "*"
1516
paths:
@@ -260,14 +261,8 @@ jobs:
260261
if-no-files-found: error
261262

262263
snapcraft:
263-
name: Build snap
264+
name: Build Snap
264265
runs-on: ubuntu-latest
265-
strategy:
266-
matrix:
267-
platform:
268-
- i386
269-
- amd64
270-
fail-fast: false
271266
steps:
272267
- name: Check out code base
273268
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
@@ -286,16 +281,15 @@ jobs:
286281
uses: docker/setup-qemu-action@v1
287282

288283
- id: build
289-
name: Build snap
290-
uses: diddlesnaps/snapcraft-multiarch-action@v1
284+
name: Build Snap
285+
uses: snapcore/action-build@v1
291286
with:
292-
architecture: ${{ matrix.platform }}
293287
snapcraft-channel: edge
294288

295289
- name: Upload artifact
296290
uses: actions/upload-artifact@v2
297291
with:
298-
name: ${{ env.PRODUCT }}-snap-${{ matrix.platform }}
292+
name: ${{ env.PRODUCT }}-snap
299293
path: ${{ steps.build.outputs.snap }}
300294

301295
- name: Install snap

.github/workflows/release.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,6 @@ jobs:
203203
snapcraft:
204204
name: Build Snap
205205
runs-on: ubuntu-latest
206-
strategy:
207-
matrix:
208-
platform:
209-
- amd64
210206
steps:
211207
- name: Check out code base
212208
uses: actions/checkout@v2
@@ -223,10 +219,9 @@ jobs:
223219
sed -i "s/version: 'git'/version: '${version}'/g" snapcraft.yaml
224220
225221
- id: build
226-
name: Build snap
227-
uses: diddlesnaps/snapcraft-multiarch-action@v1
222+
name: Build Snap
223+
uses: snapcore/action-publish@v1
228224
with:
229-
architecture: ${{ matrix.platform }}
230225
snapcraft-channel: stable
231226

232227
- name: Upload artifact

.github/workflows/snapcraft.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ permissions: write-all
1111
jobs:
1212
snapcraft:
1313
runs-on: ubuntu-latest
14-
strategy:
15-
matrix:
16-
platform:
17-
- i386
18-
- amd64
1914
steps:
2015
- name: Check out Git repository
2116
uses: actions/checkout@v2
@@ -32,16 +27,15 @@ jobs:
3227
sed -i "s/version: 'git'/version: '${version}'/g" snapcraft.yaml
3328
3429
- id: build
35-
name: Build snap
36-
uses: diddlesnaps/snapcraft-multiarch-action@v1
30+
name: Build Snap
31+
uses: snapcore/action-publish@v1
3732
with:
38-
architecture: ${{ matrix.platform }}
3933
snapcraft-channel: stable
4034

4135
- name: Upload artifact
4236
uses: actions/upload-artifact@v2
4337
with:
44-
name: snap-${{ matrix.platform }}
38+
name: wayback-snap
4539
path: ${{ steps.build.outputs.snap }}
4640

4741
- uses: snapcore/action-publish@v1

snapcraft.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ description: |
1111
base: core18
1212
grade: stable
1313
confinement: strict
14-
14+
compression: lzo
1515
architectures:
1616
#- build-on: [i386, amd64, arm64, armhf, ppc64el, s390x]
17-
- build-on: [i386, amd64]
17+
- build-on: amd64
1818

1919
parts:
2020
wayback:
@@ -28,3 +28,4 @@ apps:
2828
plugs:
2929
- home
3030
- network
31+
- network-bind

0 commit comments

Comments
 (0)