File tree Expand file tree Collapse file tree 3 files changed +11
-36
lines changed Expand file tree Collapse file tree 3 files changed +11
-36
lines changed Original file line number Diff line number Diff line change 1
- name : CI
1
+ name : Run Julia Base Tests
2
2
on :
3
3
pull_request :
4
- push :
5
- branches :
6
- - master
7
- tags : ' *'
8
4
jobs :
9
5
test :
10
6
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13
9
fail-fast : false
14
10
matrix :
15
11
version :
16
- - ' 1.0'
17
- - ' 1'
18
12
- ' nightly'
19
13
os :
20
14
- ubuntu-latest
21
- - macOS-latest
22
- - windows-latest
23
15
arch :
24
16
- x64
25
17
env :
41
33
${{ runner.os }}-test-
42
34
${{ runner.os }}-
43
35
- uses : julia-actions/julia-buildpkg@v1
44
- - uses : julia-actions/julia-runtest@v1
45
- - uses : julia-actions/julia-processcoverage@v1
46
- - uses : codecov/codecov-action@v1
47
- with :
48
- file : lcov.info
36
+ - name : Test Julia Base
37
+ run : |
38
+ julia --project test/juliatests.jl
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
10
10
const juliadir = dirname (dirname (Sys. BINDIR))
11
11
const testdir = joinpath (juliadir, " test" )
12
- if isdir (testdir)
13
- include (joinpath (testdir, " choosetests.jl" ))
14
- else
15
- @error " Julia's test/ directory not found, can't run Julia tests"
12
+ if ! isdir (testdir)
13
+ run (` git clone https://github.com/JuliaLang/julia.git` )
14
+ cd (" julia" ) do
15
+ run (` git checkout $(Base. GIT_VERSION_INFO. commit) ` )
16
+ run (` cp -r test $testdir ` )
17
+ end
16
18
end
19
+ include (joinpath (testdir, " choosetests.jl" ))
17
20
18
21
function test_path (test)
19
22
t = split (test, ' /' )
You can’t perform that action at this time.
0 commit comments