Skip to content

Commit 26fcb81

Browse files
authored
fix/snap: specify platforms to build for and drop i386 (#251)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
1 parent e85c9d2 commit 26fcb81

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

snap/snapcraft.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ description: Python command-line client for tldr pages.
77
grade: stable
88
confinement: strict
99

10+
platforms:
11+
amd64:
12+
build-on: [amd64]
13+
build-for: [amd64]
14+
arm64:
15+
build-on: [arm64]
16+
build-for: [arm64]
17+
armhf:
18+
build-on: [armhf]
19+
build-for: [armhf]
20+
ppc64el:
21+
build-on: [ppc64el]
22+
build-for: [ppc64el]
23+
s390x:
24+
build-on: [s390x]
25+
build-for: [s390x]
26+
1027
parts:
1128
tldr:
1229
plugin: python

0 commit comments

Comments
 (0)