Skip to content

Commit ad7a0a3

Browse files
authored
Merge pull request #87 from tshort/MasonProtter-patch-3
test on 1.8
2 parents 5e4f03f + c8cfd3f commit ad7a0a3

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.8.0-beta3'
21+
- '1.8'
2222
os:
2323
- ubuntu-latest
2424
- macOS-latest

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
version:
2121
- '1.7'
22-
- '1.8.0-beta3'
22+
- '1.8'
2323
os:
2424
- ubuntu-latest
2525
- macOS-latest

test/testintegration.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
status = -1
1616
try
1717
isfile("times_table") && rm("times_table")
18-
status = run(`$jlpath --compile=min $testpath/scripts/times_table.jl`)
18+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/times_table.jl`)
1919
catch e
2020
@warn "Could not compile $testpath/scripts/times_table.jl"
2121
println(e)
@@ -46,7 +46,7 @@
4646
status = -1
4747
try
4848
isfile("withmallocarray") && rm("withmallocarray")
49-
status = run(`$jlpath --compile=min $testpath/scripts/withmallocarray.jl`)
49+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/withmallocarray.jl`)
5050
catch e
5151
@warn "Could not compile $testpath/scripts/withmallocarray.jl"
5252
println(e)
@@ -73,7 +73,7 @@
7373
status = -1
7474
try
7575
isfile("rand_matrix") && rm("rand_matrix")
76-
status = run(`$jlpath --compile=min $testpath/scripts/rand_matrix.jl`)
76+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/rand_matrix.jl`)
7777
catch e
7878
@warn "Could not compile $testpath/scripts/rand_matrix.jl"
7979
println(e)
@@ -99,7 +99,7 @@
9999
status = -1
100100
try
101101
isfile("randn_matrix") && rm("randn_matrix")
102-
status = run(`$jlpath --compile=min $testpath/scripts/randn_matrix.jl`)
102+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/randn_matrix.jl`)
103103
catch e
104104
@warn "Could not compile $testpath/scripts/randn_matrix.jl"
105105
println(e)
@@ -131,7 +131,7 @@
131131
status = -1
132132
try
133133
isfile("loopvec_product") && rm("loopvec_product")
134-
status = run(`$jlpath --compile=min $testpath/scripts/loopvec_product.jl`)
134+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_product.jl`)
135135
catch e
136136
@warn "Could not compile $testpath/scripts/loopvec_product.jl"
137137
println(e)
@@ -159,7 +159,7 @@
159159
status = -1
160160
try
161161
isfile("loopvec_matrix") && rm("loopvec_matrix")
162-
status = run(`$jlpath --compile=min $testpath/scripts/loopvec_matrix.jl`)
162+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_matrix.jl`)
163163
catch e
164164
@warn "Could not compile $testpath/scripts/loopvec_matrix.jl"
165165
println(e)
@@ -190,7 +190,7 @@
190190
status = -1
191191
try
192192
isfile("loopvec_matrix_stack") && rm("loopvec_matrix_stack")
193-
status = run(`$jlpath --compile=min $testpath/scripts/loopvec_matrix_stack.jl`)
193+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_matrix_stack.jl`)
194194
catch e
195195
@warn "Could not compile $testpath/scripts/loopvec_matrix_stack.jl"
196196
println(e)
@@ -221,7 +221,7 @@
221221
status = -1
222222
try
223223
isfile("print_args") && rm("print_args")
224-
status = run(`$jlpath --compile=min $testpath/scripts/print_args.jl`)
224+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/print_args.jl`)
225225
catch e
226226
@warn "Could not compile $testpath/scripts/print_args.jl"
227227
println(e)
@@ -250,7 +250,7 @@
250250
status = -1
251251
try
252252
isfile("interop") && rm("interop")
253-
status = run(`$jlpath --compile=min $testpath/scripts/interop.jl`)
253+
status = run(`$jlpath --startup=no --compile=min $testpath/scripts/interop.jl`)
254254
catch e
255255
@warn "Could not compile $testpath/scripts/interop.jl"
256256
println(e)

0 commit comments

Comments
 (0)