Activity log for bug #1693451

Date Who What changed Old value New value Message
2017-05-25 09:03:25 Alan Pope 🍺🐧🐱 πŸ¦„ bug added bug
2017-05-25 16:12:17 Leo Arias snapcraft: status New Triaged
2017-05-25 16:12:20 Leo Arias snapcraft: importance Undecided Medium
2017-05-25 16:20:04 Leo Arias tags integrations
2017-05-26 12:54:32 Alan Pope 🍺🐧🐱 πŸ¦„ description CircleCI is an awesome alternative to travis for CI. https://circleci.com Using a simple .circleci/config.yml (below) you can have circleci use an Ubuntu 16.04 image to build using snapcraft, however we don't currently have support for adding the store credentials in the same way we do for travis. CircleCi supports using encrypted credentials. https://github.com/circleci/encrypted-files version: 2 jobs: build: working_directory: ~/emoji docker: - image: buildpack-deps:xenial steps: - checkout - run: command: | apt update apt install -y snapcraft snapcraft - store_artifacts: path: ./*.snap - deploy: name: Push Master to Snap Store command: | echo snapcraft push *.snap --channel edge CircleCI is an awesome alternative to travis for CI. https://circleci.com Using a simple .circleci/config.yml (below) you can have circleci use an Ubuntu 16.04 image to build using snapcraft, however we don't currently have support for adding the store credentials in the same way we do for travis. CircleCi supports using encrypted credentials. I documented how I got that working at https://forum.snapcraft.io/t/building-pushing-snaps-using-circleci https://github.com/circleci/encrypted-files version: 2 jobs: build: working_directory: ~/emoji machine: true steps: - checkout - run: command: | sudo apt update sudo apt install -y snapd sudo snap install snapcraft --edge --classic /snap/bin/snapcraft - deploy: name: Push Master to Snap Store command: | openssl aes-256-cbc -d -in .snapcraft/snapcraft.encrypted -out .snapcraft/snapcraft.cfg -k $KEY /snap/bin/snapcraft push *.snap
2017-06-23 19:00:54 Nobuto Murata bug added subscriber Nobuto Murata