Skip to content

Commit

Permalink
[Do Not Merge] Run Julia Base Tests
Browse files Browse the repository at this point in the history
This is just to see what the current state here is, since I didn't feel
like running this on my Laptop.
  • Loading branch information
simeonschaub committed Aug 14, 2021
1 parent 19757b4 commit 9d93436
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/CI.yml → .github/workflows/BaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: CI
name: Run Julia Base Tests
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand All @@ -13,13 +9,9 @@ jobs:
fail-fast: false
matrix:
version:
- '1.0'
- '1'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
env:
Expand All @@ -41,8 +33,6 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
- name: Test Julia Base
run: |
julia --project test/juliatests.jl
3 changes: 2 additions & 1 deletion test/juliatests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ const testdir = joinpath(juliadir, "test")
if isdir(testdir)
include(joinpath(testdir, "choosetests.jl"))
else
@error "Julia's test/ directory not found, can't run Julia tests"
run(`git clone https://github.com/JuliaLang/julia.git`)
run(`cp -r julia/test $testdir`)
end

function test_path(test)
Expand Down

0 comments on commit 9d93436

Please sign in to comment.