-
Notifications
You must be signed in to change notification settings - Fork 146
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
Skip Pkg.clone(pwd()) in AppVeyor #334
Conversation
143b053
to
b1d6a93
Compare
@@ -4,6 +4,9 @@ environment: | |||
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7-latest-win64.exe" | |||
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe" | |||
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe" | |||
global: | |||
JULIA_PROJECT: "@." | |||
# as in https://github.com/travis-ci/travis-build/blob/5aef38fe4785caf3fec7a53364e6c17501c8fbb9/lib/travis/build/script/julia.rb#L23 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Project.toml
Outdated
@@ -0,0 +1,21 @@ | |||
name = "ForwardDiff" | |||
uuid = "cdcbfbfc-8bc0-11e8-194f-4dc5537a382f" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be "f6369f11-7733-5829-9624-2563aa707210"
(https://github.com/JuliaRegistries/General/blob/5effb80270af0c849135c80c4fdbcfe9a1a5c180/F/ForwardDiff/Package.toml#L2)
Here is how I created it: ``` julia> Pkg.API.project("ForwardDiff", ".."; preview=false) julia> edit("Project.toml") (v0.7) pkg> activate . (ForwardDiff) pkg> add StaticArrays DiffResults DiffRules NaNMath SpecialFunctions CommonSubexpressions ``` uuid is taken from: https://github.com/JuliaRegistries/General/blob/5effb80270af0c849135c80c4fdbcfe9a1a5c180/F/ForwardDiff/Package.toml#L2
Merged to #333 |
see #333