From c3ff03054238a4973c961f7c234b6211e0857b5c Mon Sep 17 00:00:00 2001 From: Michael Angelos Simos Date: Thu, 9 Aug 2018 10:17:31 +0300 Subject: [PATCH 1/3] doc: Update etcher package repo installation and publishing info Change-type: patch Signed-off-by: Michael Angelos Simos --- README.md | 8 ++++---- docs/MAINTAINERS.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2f2664e4..27430a99 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ installers for all supported operating systems. 1. Add Etcher debian repository: ``` - echo "deb https://dl.bintray.com/resin-io/debian stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list + echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list ``` 2. Trust Bintray.com's GPG key: @@ -72,7 +72,7 @@ sudo apt-get update 1. Add Etcher rpm repository: ```sh - sudo wget https://bintray.com/resin-io/redhat/rpm -O /etc/yum.repos.d/bintray-resin-io-redhat.repo + sudo wget https://etcher.io/static/etcher-rpm.repo -O /etc/yum.repos.d/etcher-rpm.repo ``` 2. Update and install: @@ -89,14 +89,14 @@ sudo apt-get update ``` sudo yum remove -y etcher-electron -sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo +sudo rm /etc/yum.repos.d/etcher-rpm.repo sudo yum clean all sudo yum makecache fast ``` or ``` sudo dnf remove -y etcher-electron -sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo +sudo rm /etc/yum.repos.d/etcher-rpm.repo sudo dnf clean all sudo dnf makecache ``` diff --git a/docs/MAINTAINERS.md b/docs/MAINTAINERS.md index b15479e0..fefecf2d 100644 --- a/docs/MAINTAINERS.md +++ b/docs/MAINTAINERS.md @@ -166,10 +166,10 @@ export BINTRAY_API_KEY="youruserapikey" ``` ```bash -./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "debian" -y "debian" -r "x64" -f "dist/etcher-electron_1.2.1_amd64.deb" -./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "debian" -y "debian" -r "x86" -f "dist/etcher-electron_1.2.1_i386.deb" -./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "redhat" -y "redhat" -r "x64" -f "dist/etcher-electron-1.2.1.x86_64.rpm" -./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "redhat" -y "redhat" -r "x86" -f "dist/etcher-electron-1.2.1.i686.rpm" +./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "debian" -y "debian" -r "x64" -f "dist/etcher-electron_1.2.1_amd64.deb" +./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "debian" -y "debian" -r "x86" -f "dist/etcher-electron_1.2.1_i386.deb" +./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "redhat" -y "redhat" -r "x64" -f "dist/etcher-electron-1.2.1.x86_64.rpm" +./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "redhat" -y "redhat" -r "x86" -f "dist/etcher-electron-1.2.1.i686.rpm" ``` ### Uploading binaries to Amazon S3 From 2f4a7352d98e9aeafbda7b908756f6f5fcf0ec24 Mon Sep 17 00:00:00 2001 From: Michael Angelos Simos Date: Thu, 9 Aug 2018 10:18:13 +0300 Subject: [PATCH 2/3] makefile: Update etcher deb/rpm publishing Change-type: patch Signed-off-by: Michael Angelos Simos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8f5e9b3e..19fad1f3 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ APPLICATION_NAME = $(shell jq -r '.displayName' package.json) APPLICATION_DESCRIPTION = $(shell jq -r '.description' package.json) APPLICATION_COPYRIGHT = $(shell cat electron-builder.yml | shyaml get-value copyright) -BINTRAY_ORGANIZATION = resin-io +BINTRAY_ORGANIZATION = etcher BINTRAY_REPOSITORY_DEBIAN = debian BINTRAY_REPOSITORY_REDHAT = redhat From 2fb8ad146f4d8c8d9fc14d726c162d0e6e336277 Mon Sep 17 00:00:00 2001 From: Lorenzo Alberto Maria Ambrosi Date: Thu, 27 Sep 2018 19:21:54 +0200 Subject: [PATCH 3/3] Change spectron port to run tests Change-type: patch Signed-off-by: Lorenzo Alberto Maria Ambrosi --- tests/spectron/runner.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spectron/runner.spec.js b/tests/spectron/runner.spec.js index 7e475676..4e37f0c4 100644 --- a/tests/spectron/runner.spec.js +++ b/tests/spectron/runner.spec.js @@ -36,7 +36,7 @@ describe('Spectron', function () { before('app:start', function () { app = new spectron.Application({ path: entrypoint, - port: 9999, + port: 9998, args: [ '.' ] })