Skip to content

Commit

Permalink
Comment out snapcraft stuff
Browse files Browse the repository at this point in the history
It's failing the release pipeline and we do not use it currently.
  • Loading branch information
dawidd6 committed Nov 11, 2019
1 parent 221f2b2 commit 945ad95
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 72 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,20 @@ jobs:
- image: circleci/golang:1.12
steps:
- checkout
- run:
name: Install snapcraft
command: |
./.circleci/install_snapcraft.sh
- run:
name: Login to snapcraft
# if you ever lose this, you can recreate it via
# `snapcraft export-login snapcraft.login && base64 snapcraft.login` and then chuck that
# in circle ci as the SNAPCRAFT_LOGIN_FILE env variable
# You'll need your ubuntu one password
command: |
echo $SNAPCRAFT_LOGIN_FILE | base64 --decode --ignore-garbage > snapcraft.login
snapcraft login --with snapcraft.login
rm snapcraft.login
#- run:
# name: Install snapcraft
# command: |
# ./.circleci/install_snapcraft.sh
#- run:
# name: Login to snapcraft
# # if you ever lose this, you can recreate it via
# # `snapcraft export-login snapcraft.login && base64 snapcraft.login` and then chuck that
# # in circle ci as the SNAPCRAFT_LOGIN_FILE env variable
# # You'll need your ubuntu one password
# command: |
# echo $SNAPCRAFT_LOGIN_FILE | base64 --decode --ignore-garbage > snapcraft.login
# snapcraft login --with snapcraft.login
# rm snapcraft.login
- run:
name: Run gorelease
command: |
Expand Down
116 changes: 58 additions & 58 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,61 +73,61 @@ brews:
# Default is empty.
description: 'A simple terminal UI for docker, written in Go'

snapcrafts:
- builds:
- snap

replacements:
linux: Linux
386: x86
amd64: x86_64

# Wether to publish the snap to the snapcraft store.
# Remember you need to `snapcraft login` first.
# Defaults to false.
publish: false

# Single-line elevator pitch for your amazing snap.
# 79 char long at most.
summary: The lazier way to manage everything docker

# This the description of your snap. You have a paragraph or two to tell the
# most important story about your snap. Keep it under 100 words though,
# we live in tweetspace and your description wants to look good in the snap
# store.
description: 'A simple terminal UI for docker, written in Go'

# A guardrail to prevent you from releasing a snap to all your users before
# it is ready.
# `devel` will let you release only to the `edge` and `beta` channels in the
# store. `stable` will let you release also to the `candidate` and `stable`
# channels. More info about channels here:
# https://snapcraft.io/docs/reference/channels
# TODO: reset to `stable` when we've been manually reviewed: https://forum.snapcraft.io/t/request-for-classic-confinement-for-lazydocker/12155
grade: devel

# Snaps can be setup to follow three different confinement policies:
# `strict`, `devmode` and `classic`. A strict confinement where the snap
# can only read and write in its own namespace is recommended. Extra
# permissions for strict snaps can be declared as `plugs` for the app, which
# are explained later. More info about confinement here:
# https://snapcraft.io/docs/reference/confinement
confinement: classic

# Your app's license, based on SPDX license expressions: https://spdx.org/licenses
# Default is empty.
license: MIT

# # Each binary built by GoReleaser is an app inside the snap. In this section
# # you can declare extra details for those binaries. It is optional.
# apps:

# # The name of the app must be the same name as the binary built or the snapcraft name.
# lazydocker:

# # If your app requires extra permissions to work outside of its default
# # confined space, declare them here.
# # You can read the documentation about the available plugs and the
# # things they allow:
# # https://snapcraft.io/docs/reference/interfaces.
# plugs: []
#snapcrafts:
# - builds:
# - snap
#
# replacements:
# linux: Linux
# 386: x86
# amd64: x86_64
#
# # Wether to publish the snap to the snapcraft store.
# # Remember you need to `snapcraft login` first.
# # Defaults to false.
# publish: false
#
# # Single-line elevator pitch for your amazing snap.
# # 79 char long at most.
# summary: The lazier way to manage everything docker
#
# # This the description of your snap. You have a paragraph or two to tell the
# # most important story about your snap. Keep it under 100 words though,
# # we live in tweetspace and your description wants to look good in the snap
# # store.
# description: 'A simple terminal UI for docker, written in Go'
#
# # A guardrail to prevent you from releasing a snap to all your users before
# # it is ready.
# # `devel` will let you release only to the `edge` and `beta` channels in the
# # store. `stable` will let you release also to the `candidate` and `stable`
# # channels. More info about channels here:
# # https://snapcraft.io/docs/reference/channels
# # TODO: reset to `stable` when we've been manually reviewed: https://forum.snapcraft.io/t/request-for-classic-confinement-for-lazydocker/12155
# grade: devel
#
# # Snaps can be setup to follow three different confinement policies:
# # `strict`, `devmode` and `classic`. A strict confinement where the snap
# # can only read and write in its own namespace is recommended. Extra
# # permissions for strict snaps can be declared as `plugs` for the app, which
# # are explained later. More info about confinement here:
# # https://snapcraft.io/docs/reference/confinement
# confinement: classic
#
# # Your app's license, based on SPDX license expressions: https://spdx.org/licenses
# # Default is empty.
# license: MIT
#
# # # Each binary built by GoReleaser is an app inside the snap. In this section
# # # you can declare extra details for those binaries. It is optional.
# # apps:
#
# # # The name of the app must be the same name as the binary built or the snapcraft name.
# # lazydocker:
#
# # # If your app requires extra permissions to work outside of its default
# # # confined space, declare them here.
# # # You can read the documentation about the available plugs and the
# # # things they allow:
# # # https://snapcraft.io/docs/reference/interfaces.
# # plugs: []

0 comments on commit 945ad95

Please sign in to comment.