Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI, deps and docs generation #20

Merged
merged 4 commits into from
Dec 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,17 @@ environment:
- julia_version: nightly

platform:
- x86 # 32-bit
- x64 # 64-bit

## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia_version: nightly
- platform: x86

#branches:
# only:
# - master
# - /release-.*/
branches:
only:
- master
- dev
- /release-.*/

notifications:
- provider: Email
Expand Down
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@ addons:
- python3-matplotlib


## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia: nightly
- arch: x86
fast_finish: true
branches:
only:
- master
- dev
- /^release-.*$/
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/

notifications:
email: false
Expand All @@ -42,9 +41,10 @@ after_success:
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

jobs:
allow_failures:
- julia: nightly
fast_finish: true
exclude:
- os: linux
arch: x86
- os: osx
arch: x86
include:
Expand Down
44 changes: 22 additions & 22 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,28 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"

[compat]
"ArraysOfArrays" = "0.4"
"Clustering" = "0.13"
"Distributions" = "0.21"
"FillArrays" = "0.8"
"Formatting" = "0.4"
"Interpolations" = "0.12"
"IntervalSets" = "0.3"
"JSON" = "0.21"
"LaTeXStrings" = "1"
"NamedTupleTools" = "0.12"
"ParallelProcessingTools" = "0.4"
"ProgressMeter" = "1.2"
"RadiationDetectorSignals" = "0.1"
"RecipesBase" = "0.7"
"Requires" = "0.5"
"Rotations" = "0.12"
"StaticArrays" = "0.12"
"StatsBase" = "0.32"
"Tables" = "0.2"
"TypedTables" = "1.2"
"Unitful" = "0.18"
"YAML" = "0.3"
ArraysOfArrays = "0.4"
Clustering = "0.13"
Distributions = "0.21"
FillArrays = "0.8"
Formatting = "0.4"
Interpolations = "0.12"
IntervalSets = "0.3"
JSON = "0.21"
LaTeXStrings = "1"
NamedTupleTools = "0.12"
ParallelProcessingTools = "0.4"
ProgressMeter = "1.2"
RadiationDetectorSignals = "0.1"
RecipesBase = "0.7"
Requires = "0.5,1"
Rotations = "0.12"
StaticArrays = "0.12"
StatsBase = "0.32"
Tables = "0.2"
TypedTables = "1.2"
Unitful = "0.18"
YAML = "0.3"
julia = "1"

[extras]
Expand Down
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ deploydocs(
repo = "github.com/JuliaPhysics/SolidStateDetectors.jl.git",
devbranch = "master",
devurl = "master",
forcepush = true
forcepush = true,
push_preview = true,
)