Skip to content

Commit

Permalink
Merge 354212c into bf6c677
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasnoack committed Oct 28, 2019
2 parents bf6c677 + 354212c commit 9c6b53c
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 11 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Expand Up @@ -13,8 +13,12 @@ notifications:
sudo: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --color=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("ForwardDiff"); Pkg.test("ForwardDiff"; coverage=true)';
- julia --color=yes -O3 -e 'using Pkg; Pkg.add("StaticArrays"); include("test/SIMDTest.jl")';
- julia --project -e 'using Pkg;
Pkg.update();
Pkg.instantiate()'
- julia --project -e 'using Pkg;
Pkg.test("ForwardDiff"; coverage=true)'
- julia --project --color=yes -O3 -e 'include("test/SIMDTest.jl")'
after_success:
- julia --color=yes -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia --color=yes -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
Expand Down
33 changes: 33 additions & 0 deletions Project.toml
@@ -0,0 +1,33 @@
name = "ForwardDiff"
uuid = "f6369f11-7733-5829-9624-2563aa707210"
version = "0.10.4"

[deps]
CommonSubexpressions = "bbf7d656-a473-5ed7-a52c-81e309532950"
DiffResults = "163ba53b-c6d8-5494-b064-1a9d43ac40c5"
DiffRules = "b552c78f-8df3-52c6-915a-8e097449b14b"
NaNMath = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
Calculus = "0.2, 0.3, 0.4, 0.5"
CommonSubexpressions = "0.1, 0.2"
DiffResults = "0.0.1, 0.0.2, 0.0.3, 0.0.4"
DiffRules = "0.0.4, 0.0.5, 0.0.6, 0.0.7, 0.0.8, 0.0.9, 0.0.10"
DiffTests = "0.0.1, 0.1"
NaNMath = "0.2.2, 0.3"
SpecialFunctions = "0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8"
StaticArrays = "0.8.3, 0.9, 0.10, 0.11"
julia = "0.7, 1"

[extras]
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
DiffTests = "de460e47-3fe3-5279-bb4a-814414816d5d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Calculus", "DiffTests", "LinearAlgebra", "SparseArrays", "Test"]
7 changes: 0 additions & 7 deletions REQUIRE

This file was deleted.

2 changes: 0 additions & 2 deletions test/REQUIRE

This file was deleted.

0 comments on commit 9c6b53c

Please sign in to comment.