Skip to content

Commit 746b8a0

Browse files
committed
updated appveyor.
1 parent 45d11a1 commit 746b8a0

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

appveyor.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
environment:
22
matrix:
3-
- julia_version: 0.6
43
- julia_version: 0.7
54
- julia_version: 1
65
- julia_version: nightly
@@ -9,9 +8,11 @@ platform:
98
- x86 # 32-bit
109
- x64 # 64-bit
1110

11+
# Uncomment the following lines to allow failures on nightly julia
12+
# (tests will run but not make your overall status red)
1213
matrix:
1314
allow_failures:
14-
- julia_version: latest
15+
- julia_version: latest
1516

1617
branches:
1718
only:
@@ -28,8 +29,13 @@ install:
2829
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
2930

3031
build_script:
31-
- echo "%JL_BUILD_SCRIPT%"
32-
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
32+
- C:\julia\bin\julia -e "using InteractiveUtils; versioninfo();
33+
using UUIDs;
34+
before = read(\"Project.toml\", String);
35+
after = replace(before, \"uuid = \\\"44cfe95a-1eb2-52ea-b672-e2afdf69b78f\\\"\" =>
36+
\"uuid = \\\"4d836010-47a6-11e8-12b2-0918962bae33\\\"\");
37+
write(\"Project.toml\", after);
38+
import Pkg; Pkg.build()"
3339

3440
test_script:
3541
- echo "%JL_TEST_SCRIPT%"

0 commit comments

Comments
 (0)