From 3c303f89205110db1da6de0d079c12d2f6674d70 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Tue, 22 Oct 2024 17:24:35 -0400 Subject: [PATCH] Remove appveyor and travis --- appveyor.yml | 36 ------------------------------------ oldtravis.yml | 28 ---------------------------- 2 files changed, 64 deletions(-) delete mode 100644 appveyor.yml delete mode 100644 oldtravis.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 141643e..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,36 +0,0 @@ -environment: - matrix: - - julia_version: 1.0 - - julia_version: latest - -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: latest - -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%" diff --git a/oldtravis.yml b/oldtravis.yml deleted file mode 100644 index 0ba2a04..0000000 --- a/oldtravis.yml +++ /dev/null @@ -1,28 +0,0 @@ -# Documentation: http://docs.travis-ci.com/user/languages/julia/ -language: julia - -os: - - linux - - osx - -julia: - - 1.5 - - nightly - -env: - global: - - DOCUMENTER_DEBUG=true - -jobs: - include: - - stage: "Documentation" - julia: 1.5 - os: osx - script: - - julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); - Pkg.add(PackageSpec(path=pwd()))' - - julia --project=docs/ docs/make.jl - after_success: skip - -after_success: - - julia -e 'if VERSION >= v"1.0.0" using Pkg end ; Pkg.add("ColorSchemes"); import ColorSchemes; cd(joinpath(dirname(pathof(ColorSchemes)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';