Skip to content

Commit ae68e22

Browse files
committed
Simplify CI scripts now that CSDP is not used in tests anymore
1 parent 3cd5681 commit ae68e22

2 files changed

Lines changed: 1 addition & 20 deletions

File tree

.travis.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,6 @@ matrix:
1515
allow_failures:
1616
- julia: nightly
1717

18-
addons:
19-
apt: # apt-get for linux
20-
packages:
21-
- liblapack-dev
22-
- libblas-dev
23-
#before_script: # homebrew for mac
24-
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
25-
26-
script:
27-
- julia -e 'Pkg.clone(pwd());
28-
Pkg.build("SemidefiniteOptInterface");
29-
Pkg.add("CSDP");
30-
Pkg.checkout("CSDP");
31-
Pkg.build("CSDP");
32-
Pkg.test("SemidefiniteOptInterface"; coverage=true)'
33-
3418
after_success:
3519
# push coverage results to Coveralls
3620
- julia -e 'cd(Pkg.dir("SemidefiniteOptInterface")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

appveyor.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ build_script:
4242
- IF EXIST .git\shallow (git fetch --unshallow)
4343
- C:\projects\julia\bin\julia -e "versioninfo();
4444
Pkg.clone(pwd(), \"SemidefiniteOptInterface\");
45-
Pkg.build(\"SemidefiniteOptInterface\");
46-
Pkg.add(\"CSDP\");
47-
Pkg.checkout(\"CSDP\");
48-
Pkg.build(\"CSDP\")"
45+
Pkg.build(\"SemidefiniteOptInterface\")"
4946

5047
test_script:
5148
- C:\projects\julia\bin\julia -e "Pkg.test(\"SemidefiniteOptInterface\")"

0 commit comments

Comments
 (0)