From e44ad897201c0e569756c1b5c46ef0b77768b90e Mon Sep 17 00:00:00 2001 From: Chris de Graaf Date: Mon, 30 Nov 2020 16:41:31 -0600 Subject: [PATCH] Automated commit made by MassInstallAction.jl --- .github/workflows/CI.yml | 32 ++++++++++++++++++++++++++++++ .travis.yml | 25 ------------------------ README.md | 3 +-- appveyor.yml | 42 ---------------------------------------- 4 files changed, 33 insertions(+), 69 deletions(-) create mode 100644 .github/workflows/CI.yml delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 000000000..7fa39c380 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,32 @@ +name: CI +on: + pull_request: + branches: + - master + push: + branches: + - master +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@v1 + with: + version: 1 + - uses: actions/cache@v1 + env: + cache-name: cache-artifacts + with: + path: ~/.julia/artifacts + key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} + restore-keys: | + ${{ runner.os }}-test-${{ env.cache-name }}- + ${{ 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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c4019e6af..000000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: julia - -os: - - osx - - linux - -julia: - - 1 - -# # Uncomment the following lines to allow failures on nightly julia -# # (tests will run but not make your overall status red) -#matrix: -# allow_failures: -# - julia: nightly - -notifications: - email: false - -#script: # the default script is equivalent to the following -# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi -# - julia --project -e 'using Pkg; Pkg.build(); Pkg.test(; coverage=true)'; - -after_success: - - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; - - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'; diff --git a/README.md b/README.md index 269b4ad8d..e9017446c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ Various basic Ordinary Differential Equation solvers implemented in Julia. [![Join the chat at https://gitter.im/JuliaDiffEq/Lobby](https://badges.gitter.im/JuliaDiffEq/Lobby.svg)](https://gitter.im/JuliaDiffEq/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Travis](https://travis-ci.org/SciML/ODE.jl.svg?branch=master)](https://travis-ci.org/SciML/ODE.jl) -[![AppVeyor](https://ci.appveyor.com/api/projects/status/mue0n1yhlxq4ok8d/branch/master?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/ode-jl/branch/master) +[![Build Status](https://github.com/SciML/ODE.jl/workflows/CI/badge.svg)](https://github.com/SciML/ODE.jl/actions?query=workflow%3ACI) [![Coverage Status](https://img.shields.io/coveralls/JuliaDiffEq/ODE.jl.svg)](https://coveralls.io/r/JuliaDiffEq/ODE.jl) Pull requests are always highly welcome to fix bugs, add solvers, or anything else! diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 96de7c8c5..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,42 +0,0 @@ -environment: - matrix: - - julia_version: 1 -# - julia_version: nightly - -platform: - - x86 # 32-bit - - x64 # 64-bit - -# # Uncomment the following lines to allow failures on nightly julia -# # (tests will run but not make your overall status red) -# matrix: -# allow_failures: -# - julia_version: nightly - -branches: - only: - - master - - /release-.*/ - -notifications: - - provider: Email - on_build_success: false - on_build_failure: false - on_build_status_changed: false - -install: - - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) - -build_script: - - echo "%JL_BUILD_SCRIPT%" - - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" - -test_script: - - echo "%JL_TEST_SCRIPT%" - - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" - -# # Uncomment to support code coverage upload. Should only be enabled for packages -# # which would have coverage gaps without running on Windows -# on_success: -# - echo "%JL_CODECOV_SCRIPT%" -# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"