Skip to content

Commit 6fa08c9

Browse files
authored
Merge pull request #27 from tanmaykm/tan/julia10
fix appveyor
2 parents 34980a1 + 5f72d80 commit 6fa08c9

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

appveyor.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ environment:
44
- julia_version: latest
55

66
platform:
7-
- x86
8-
- x64
7+
- x86 # 32-bit
8+
- x64 # 64-bit
99

1010
## uncomment the following lines to allow failures on nightly julia
1111
## (tests will run but not make your overall status red)
@@ -15,7 +15,8 @@ platform:
1515

1616
branches:
1717
only:
18-
- /version-.*/
18+
- master
19+
- /release-.*/
1920

2021
notifications:
2122
- provider: Email
@@ -24,13 +25,7 @@ notifications:
2425
on_build_status_changed: false
2526

2627
install:
27-
- ps: |
28-
if (Test-Path env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) {
29-
$ref = $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT
30-
} else {
31-
$ref = $env:APPVEYOR_REPO_BRANCH
32-
}
33-
iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/$ref/bin/install.ps1"))
28+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
3429

3530
build_script:
3631
- echo "%JL_BUILD_SCRIPT%"

test/runtests.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ function LinearAlgebra.mul!(rho2::StridedVector{T},Phi::CPM{T},rho::StridedVecto
147147
end
148148
return copyto!(rho2,rho1)
149149
end
150-
LinearAlgebra.A_mul_B!(rho2::StridedVector{T},Phi::CPM{T},rho::StridedVector{T}) where {T<:LinearAlgebra.BlasFloat} = LinearAlgebra.mul!(rho2, Phi, rho)
151-
# after the A_mul_B! deprecation, remove this A_mul_B! def
152150

153151
let
154152
# Generate random isometry

0 commit comments

Comments
 (0)