Skip to content

Updates #4

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

Closed
wants to merge 3 commits into from
Closed
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
41 changes: 0 additions & 41 deletions .appveyor.yml

This file was deleted.

27 changes: 20 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,26 @@ language: julia
os:
- linux
- osx
- windows

julia:
- 1.0
- 1.2
- 1.3
- nightly

arch:
- amd64
- x86

env:
- JULIA_NUM_THREADS=4

## 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
fast_finish: true
branches:
only:
- master
- dev
- /^release-.*$/
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/

notifications:
email: false
Expand All @@ -32,10 +36,19 @@ 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: osx
arch: x86
- os: windows
arch: x86
include:
- stage: "Documentation"
julia: 1.0
os: linux
arch: amd64
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"

[compat]
Documenter = "~0.23"
Documenter = "~0.24"
5 changes: 3 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ makedocs(
prettyurls = !("local" in ARGS),
canonical = "https://oschulz.github.io/ParallelProcessingTools.jl/stable/"
),
pages=[
pages = [
"Home" => "index.md",
"API" => "api.md",
"LICENSE" => "LICENSE.md",
Expand All @@ -26,5 +26,6 @@ makedocs(

deploydocs(
repo = "github.com/oschulz/ParallelProcessingTools.jl.git",
forcepush = true
forcepush = true,
push_preview = true,
)
2 changes: 1 addition & 1 deletion src/onthreads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export @onthreads

macro onallthreads(expr)
quote
Base.depwarn("`@onallthreads expr` is deprecated, use `@onallthreads allthreads() expr` instead.", nothing)
Base.depwarn("`@onallthreads expr` is deprecated, use `@onthreads allthreads() expr` instead.", nothing)
$(_thread_exec_func(:(ParallelProcessingTools.allthreads()), expr))
end
end
Expand Down