Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 67d52f9

Browse files
committed
Merge branch 'develop'
2 parents fd36409 + de107c2 commit 67d52f9

File tree

4 files changed

+96
-0
lines changed

4 files changed

+96
-0
lines changed

.github/issue_template.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
I'm submitting a…
2+
3+
- [x] bug report
4+
- [ ] feature request
5+
- [ ] other
6+
7+
**Short description of the issue/suggestion:**
8+
9+
10+
11+
**Steps to reproduce the issue/enhancement:**
12+
13+
1. [First Step]
14+
2. [Second Step]
15+
3. [Other Steps...]
16+
17+
**What is the expected behavior?**
18+
19+
20+
21+
**What is the current behavior?**
22+
23+
24+
25+
**Do you have screenshots, GIFs, demos or samples which demonstrate the problem or enhancement?**
26+
27+
![image description](url)
28+
29+
**What is the motivation / use case for changing the behavior?**
30+
31+
32+
33+
**Please tell us about your environment:**
34+
35+
- Mac OS version:
36+
- Java version(s):
37+
38+
**Other information** (e.g. related issues, suggestions how to fix, links for us to have context)

.github/pull_request_template.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
**Please check if the PullRequest fulfills these requirements:**
2+
3+
(Add x between brackets to check.)
4+
5+
- [ ] I’m making this pull request against the `develop` branch
6+
- [ ] I’ve updated from the `develop` branch before proposing this pull request
7+
- [ ] I’ve tested the changes for bug fixes and/or features
8+
- [ ] I’ve documented new code
9+
10+
**What kind of change does this PR introduce?** (Bug fix, feature, docs update, other)
11+
12+
13+
14+
**What is the current behavior?** (You can also link to an open issue here)
15+
16+
17+
18+
**What is the new behavior?**
19+
20+
21+
22+
**Does this PR introduce a breaking change?** (What changes might users need to make in their application / PList file due to this PR?)
23+
24+
25+
26+
**Other information:**

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
language: generic
2+
3+
# run on different Mac OS X versions
4+
# https://docs.travis-ci.com/user/reference/osx/#OS-X-Version
5+
matrix:
6+
include:
7+
# OS X 10.10
8+
- os: osx
9+
osx_image: xcode6.4
10+
# OS X 10.11
11+
- os: osx
12+
osx_image: xcode8
13+
# OS X 10.12
14+
- os: osx
15+
osx_image: xcode9
16+
# OS X 10.13
17+
- os: osx
18+
osx_image: xcode9.3beta
19+
20+
21+
# run the 'java-version-tester' script and show&save (`tee`) the output to a
22+
# logfile; then grep the logfile for 'FAILED' entries which would cause grep
23+
# to exit with 0; then run 'test' command and swap the grep exit code
24+
# to return with 0 if grep doesn't match and return with 1 if it matches
25+
script:
26+
- sw_vers
27+
- bash test/java-version-tester.sh | tee test/java-version-tester.log
28+
- cat test/java-version-tester.log | grep FAILED ; test $? -eq 1

test/java-version-tester.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,3 +385,7 @@ testValidReqPattern "9.2.15." "1"
385385
testValidReqPattern "9.2.15.*" "1"
386386
testValidReqPattern "9.2.15.+" "1"
387387
testValidReqPattern "9.3.5.6" "1"
388+
389+
390+
echo ""
391+
echo ""

0 commit comments

Comments
 (0)