Skip to content

Commit

Permalink
Group Travis jobs (in .travis.yml) by operating system instead of by …
Browse files Browse the repository at this point in the history
…Julia version.
  • Loading branch information
kernelmethod committed Jan 20, 2020
1 parent 06fe7d6 commit 65cb03b
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,25 @@ jobs:
- os: windows
include:
###### Tests
### Julia 1.0
### Linux
- stage: "Unit tests"
julia: 1.0
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.1
- stage: "Unit tests"
julia: 1.1
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.2
- stage: "Unit tests"
julia: 1.2
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.3
- stage: "Unit tests"
julia: 1.3
os: linux
Expand All @@ -47,21 +44,15 @@ jobs:
- julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'

- stage: # Unit tests
julia: 1.3
os: osx
julia: nightly
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### OSX
- stage: # Unit tests
julia: 1.3
os: windows
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia nightly
- stage: # Unit tests
julia: nightly
os: linux
os: osx
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

Expand All @@ -72,6 +63,13 @@ jobs:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
julia: nightly

### Windows
- stage: # Unit tests
julia: 1.3
os: windows
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

- stage: # Unit tests
os: windows
script:
Expand Down

2 comments on commit 65cb03b

@kernelmethod
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/8230

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.0.1 -m "<description of version>" 65cb03b2fc7a531bd90658374332a94d204cec11
git push origin v0.0.1

Please sign in to comment.