Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatti committed Oct 15, 2019
1 parent 962822d commit b5b8570
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/orb/orb-inline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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=<<parameters.auto_username>> -Dauto.password=<<parameters.auto_password>> -Dauto.show.status.messages=<<parameters.auto_show_status_messages>> -Dauto.stop.tests.on.status=<<parameters.auto_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=<<parameters.auto_username>> -Dauto.password=<<parameters.auto_password>> -Dauto.show.status.messages=<<parameters.auto_show_status_messages>> -Dauto.stop.tests.on.status=<<parameters.auto_stop_tests_on_status>>
no_output_timeout: 90m
- persist_to_workspace:
root: /tmp/workspace
Expand Down
4 changes: 2 additions & 2 deletions .circleci/orb/orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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=<<parameters.auto_username>> -Dauto.password=<<parameters.auto_password>> -Dauto.show.status.messages=<<parameters.auto_show_status_messages>> -Dauto.stop.tests.on.status=<<parameters.auto_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=<<parameters.auto_username>> -Dauto.password=<<parameters.auto_password>> -Dauto.show.status.messages=<<parameters.auto_show_status_messages>> -Dauto.stop.tests.on.status=<<parameters.auto_stop_tests_on_status>>
no_output_timeout: 90m
- persist_to_workspace:
root: /tmp/workspace
Expand Down
2 changes: 1 addition & 1 deletion Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/nowsecure/auto/circleci/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.9
1.1.0

0 comments on commit b5b8570

Please sign in to comment.