Skip to content

Commit ca0586a

Browse files
committed
Move files over
1 parent ced3d2e commit ca0586a

17 files changed

+2766
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*.jl.*.cov
33
*.jl.mem
44
deps/deps.jl
5+
src/.DS_Store
6+
.DS_Store

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- "0.7"
8+
- "1.0"
9+
- "1.1"
10+
- nightly
11+
matrix:
12+
allow_failures:
13+
- julia: nightly
14+
- os: osx
15+
notifications:
16+
email: false
17+
after_script:
18+
- bash ./docs/travis.sh
19+
after_success:
20+
- julia -e 'cd(Pkg.dir("ApproxFunFourier")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
21+
22+
23+
# uncomment the following lines to override the default test script
24+
#script:
25+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
26+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage=true)'

REQUIRE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
julia 0.7
2+
Reexport v0.2.0
3+
ApproxFunBase
4+
FastGaussQuadrature 0.3.2
5+
FastTransforms 0.4.2
6+
RecipesBase 0.5
7+
DualNumbers 0.4
8+
ToeplitzMatrices 0.4
9+
Calculus 0.1.15
10+
DomainSets 0.0.1
11+
IntervalSets 0.3.1
12+
StaticArrays 0.8.3
13+
BlockArrays 0.8
14+
BlockBandedMatrices 0.3.5
15+
BandedMatrices 0.9
16+
AbstractFFTs 0.3.1
17+
FFTW 0.2.4
18+
SpecialFunctions 0.7
19+
LowRankApprox 0.1.4
20+
FillArrays 0.5
21+
InfiniteArrays 0.0.3
22+
LazyArrays 0.7.1
23+
DSP 0.5.1

appveyor.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
environment:
2+
matrix:
3+
- julia_version: 0.7
4+
- julia_version: 1
5+
- julia_version: nightly
6+
7+
platform:
8+
- x86 # 32-bit
9+
- x64 # 64-bit
10+
11+
# # Uncomment the following lines to allow failures on nightly julia
12+
# # (tests will run but not make your overall status red)
13+
# matrix:
14+
# allow_failures:
15+
# - julia_version: nightly
16+
17+
branches:
18+
only:
19+
- master
20+
- /release-.*/
21+
22+
notifications:
23+
- provider: Email
24+
on_build_success: false
25+
on_build_failure: false
26+
on_build_status_changed: false
27+
28+
install:
29+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
30+
31+
build_script:
32+
- echo "%JL_BUILD_SCRIPT%"
33+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
34+
35+
test_script:
36+
- echo "%JL_TEST_SCRIPT%"
37+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
38+
39+
# # Uncomment to support code coverage upload. Should only be enabled for packages
40+
# # which would have coverage gaps without running on Windows
41+
# on_success:
42+
# - echo "%JL_CODECOV_SCRIPT%"
43+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 commit comments

Comments
 (0)