Attempt to use the latest snapcraft build

This commit is contained in:
Mike Farah 2024-01-16 15:06:29 +11:00
parent 6183350182
commit 2473068a1a
2 changed files with 25 additions and 7 deletions

View File

@ -27,7 +27,7 @@ else
echo "version.go updated"
fi
version=$version ./yq -i '.version=strenv(version)' snap/snapcraft.yaml
version=$version ./yq -i '.version=strenv(version) | .parts.yq.source-tag=strenv(version)' snap/snapcraft.yaml
actualSnapVersion=$(./yq '.version' snap/snapcraft.yaml)
@ -38,6 +38,15 @@ else
echo "snapcraft updated"
fi
actualSnapVersion=$(./yq '.parts.yq.source-tag' snap/snapcraft.yaml)
if [ "$actualSnapVersion" != "$version" ]; then
echo "Failed to update snapcraft"
exit 1
else
echo "snapcraft updated"
fi
git add cmd/version.go snap/snapcraft.yaml
git commit -m 'Bumping version'
git tag $version

View File

@ -3,17 +3,26 @@ version: 'v4.40.5'
summary: A lightweight and portable command-line data file processor
description: |
`yq` uses [jq](https://github.com/stedolan/jq) like syntax but works with yaml, json, xml, csv, properties and TOML files.
base: core18
base: core22
grade: stable # devel|stable. must be 'stable' to release into candidate/stable channels
confinement: strict
architectures:
- build-on: s390x
- build-on: ppc64el
- build-on: arm64
- build-on: armhf
- build-on: amd64
- build-on: i386
apps:
yq:
command: yq
command: bin/yq
plugs: [home, removable-media]
parts:
yq:
plugin: go
go-channel: 1.20/stable
source: .
source-type: git
go-importpath: github.com/mikefarah/yq
source: https://github.com/mikefarah/yq.git
source-tag: v4.40.5
build-snaps:
- go/latest/stable