From b5b8570bae02184c82aa1b3be022633f1ac969fa Mon Sep 17 00:00:00 2001 From: Shahzad Bhatti Date: Tue, 15 Oct 2019 14:45:57 -0700 Subject: [PATCH] updated version --- .circleci/orb/orb-inline.yml | 4 ++-- .circleci/orb/orb.yml | 4 ++-- Development.md | 2 +- README.md | 2 +- src/main/java/com/nowsecure/auto/circleci/Main.java | 2 +- src/main/resources/version.txt | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/orb/orb-inline.yml b/.circleci/orb/orb-inline.yml index 823f162..6dc9410 100644 --- a/.circleci/orb/orb-inline.yml +++ b/.circleci/orb/orb-inline.yml @@ -135,9 +135,9 @@ orbs: - attach_workspace: at: /tmp/workspace - run: cp apkpure_app_887.apk /tmp/workspace/test.apk - - run: curl -Ls https://github.com/nowsecure/auto-circleci-plugin/archive/1.0.9.tar.gz | tar -xzf - -C . + - run: curl -Ls https://github.com/nowsecure/auto-circleci-plugin/archive/1.1.0.tar.gz | tar -xzf - -C . - run: - command: cd auto-circleci-plugin-1.0.9 && gradle run -Dauto.url=<< parameters.auto_url >> -Dauto.token=<< parameters.auto_token >> -Dauto.dir=<< parameters.auto_dir >> -Dauto.file=<< parameters.auto_file >> -Dauto.group=<< parameters.auto_group >> -Dauto.wait=<< parameters.auto_wait >> -Dauto.score=<< parameters.auto_score >> -Dauto.username=<> -Dauto.password=<> -Dauto.show.status.messages=<> -Dauto.stop.tests.on.status=<> + command: cd auto-circleci-plugin-1.1.0 && gradle run -Dauto.url=<< parameters.auto_url >> -Dauto.token=<< parameters.auto_token >> -Dauto.dir=<< parameters.auto_dir >> -Dauto.file=<< parameters.auto_file >> -Dauto.group=<< parameters.auto_group >> -Dauto.wait=<< parameters.auto_wait >> -Dauto.score=<< parameters.auto_score >> -Dauto.username=<> -Dauto.password=<> -Dauto.show.status.messages=<> -Dauto.stop.tests.on.status=<> no_output_timeout: 90m - persist_to_workspace: root: /tmp/workspace diff --git a/.circleci/orb/orb.yml b/.circleci/orb/orb.yml index 0d05f88..0a95269 100644 --- a/.circleci/orb/orb.yml +++ b/.circleci/orb/orb.yml @@ -72,9 +72,9 @@ commands: steps: - attach_workspace: at: /tmp/workspace - - run: curl -Ls https://github.com/nowsecure/auto-circleci-plugin/archive/1.0.9.tar.gz | tar -xzf - -C . + - run: curl -Ls https://github.com/nowsecure/auto-circleci-plugin/archive/1.1.0.tar.gz | tar -xzf - -C . - run: - command: cd auto-circleci-plugin-1.0.9 && gradle run -Dauto.url=<< parameters.auto_url >> -Dauto.token=<< parameters.auto_token >> -Dauto.dir=<< parameters.auto_dir >> -Dauto.file=<< parameters.auto_file >> -Dauto.group=<< parameters.auto_group >> -Dauto.wait=<< parameters.auto_wait >> -Dauto.score=<< parameters.auto_score >> -Dauto.username=<> -Dauto.password=<> -Dauto.show.status.messages=<> -Dauto.stop.tests.on.status=<> + command: cd auto-circleci-plugin-1.1.0 && gradle run -Dauto.url=<< parameters.auto_url >> -Dauto.token=<< parameters.auto_token >> -Dauto.dir=<< parameters.auto_dir >> -Dauto.file=<< parameters.auto_file >> -Dauto.group=<< parameters.auto_group >> -Dauto.wait=<< parameters.auto_wait >> -Dauto.score=<< parameters.auto_score >> -Dauto.username=<> -Dauto.password=<> -Dauto.show.status.messages=<> -Dauto.stop.tests.on.status=<> no_output_timeout: 90m - persist_to_workspace: root: /tmp/workspace diff --git a/Development.md b/Development.md index 6217682..bea32b4 100644 --- a/Development.md +++ b/Development.md @@ -45,7 +45,7 @@ circleci orb validate .circleci/orb/orb.yml ### Github release Create new tag and release for the new version. Note: the orb.yml should reference new version -- Search all files for 1.0.9 (or latest version) +- Search all files for 1.1.0 (or latest version) - Update .circleci/orb/orb.yml with new version - Tag and release new version in github diff --git a/README.md b/README.md index b9ac0f0..db670e6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can use Auto CircleCI Orb as follows: ``` version: 2.1 orbs: - auto_ci: nowsecure/ci-auto-orb@1.0.9 + auto_ci: nowsecure/ci-auto-orb@1.1.0 jobs: build: docker: diff --git a/src/main/java/com/nowsecure/auto/circleci/Main.java b/src/main/java/com/nowsecure/auto/circleci/Main.java index e2892da..1e1b1fc 100644 --- a/src/main/java/com/nowsecure/auto/circleci/Main.java +++ b/src/main/java/com/nowsecure/auto/circleci/Main.java @@ -384,7 +384,7 @@ private void parseArgs(String[] args) { this.file = new File(val); } if (!file.exists()) { - this.usage("auto-file doesn't exist, please specify full path"); + this.usage("auto-file doesn't exist, please specify full path " + file.getAbsolutePath()); } if (artifactsDir == null) { diff --git a/src/main/resources/version.txt b/src/main/resources/version.txt index e5a4a5e..1cc5f65 100644 --- a/src/main/resources/version.txt +++ b/src/main/resources/version.txt @@ -1 +1 @@ -1.0.9 \ No newline at end of file +1.1.0 \ No newline at end of file