Skip to content

Commit

Permalink
fix/snap: specify platforms to build for and drop i386 (#251)
Browse files Browse the repository at this point in the history
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
  • Loading branch information
kbdharun authored Jun 29, 2024
1 parent e85c9d2 commit 26fcb81
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ description: Python command-line client for tldr pages.
grade: stable
confinement: strict

platforms:
amd64:
build-on: [amd64]
build-for: [amd64]
arm64:
build-on: [arm64]
build-for: [arm64]
armhf:
build-on: [armhf]
build-for: [armhf]
ppc64el:
build-on: [ppc64el]
build-for: [ppc64el]
s390x:
build-on: [s390x]
build-for: [s390x]

parts:
tldr:
plugin: python
Expand Down

0 comments on commit 26fcb81

Please sign in to comment.