Skip to content

Commit

Permalink
Merge pull request #3 from idealista/develop
Browse files Browse the repository at this point in the history
v1.0.2 to master
  • Loading branch information
José Noguera authored May 29, 2018
2 parents a7e5623 + 84bcb38 commit f0a0134
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 19 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
version: 2
jobs:
build:
docker:
- image: circleci/python:2.7.15-stretch
working_directory: ~/jira-role

steps:
- checkout
- setup_remote_docker
- run:
name: install dependencies
command: |
sudo pip install -r .circleci/requirements.txt
- run:
name: run tests
command: |
molecule test --driver docker
4 changes: 4 additions & 0 deletions .circleci/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ansible==2.4.3.0
molecule==1.25.0
ansible-lint==3.4.20
docker
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch

## [Unreleased](https://github.com/idealista/jira-role/tree/develop)

## [1.0.2](https://github.com/idealista/jira-role/tree/1.0.2)
[Full Changelog](https://github.com/idealista/jira-role/compare/1.0.1...1.0.2)
### Added
- *Added CircleCI integration* @jnogol

### Changed
- *Jira default version v7.9.2* @jnogol

### Fixed
- *Using new Idealista's Java Role version to avoid 404 Java installation issue* @jnogol

## [1.0.1](https://github.com/idealista/jira-role/tree/1.0.1)
[Full Changelog](https://github.com/idealista/jira-role/compare/1.0.0...1.0.1)
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jira_home: /var/atlassian/jira
jira_download_dir: /jiradownload
jira_installation_dir: /opt/atlassian/jira
jira_attachments_dir: "{{ jira_home }}/data/attachments"
jira_version: 7.6.2
jira_version: 7.9.2

# Configuration
jira_jvm_support_recommended_args: "-Datlassian.plugins.enable.wait=300"
Expand Down
2 changes: 2 additions & 0 deletions molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ docker:
- jira
image: geerlingguy/docker-debian9-ansible
image_version: latest
environment:
TMPDIR: /root/
port_bindings:
8080: 8080
privileged: True
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
- src: idealista.java-role
version: 2.0.1
version: 2.0.2
name: java

0 comments on commit f0a0134

Please sign in to comment.