From 8fcf0ec6b6d299798483d49ac5fb2385f8bc4225 Mon Sep 17 00:00:00 2001 From: Jan Marvin Garbuszus Date: Sat, 11 Dec 2021 10:06:59 +0100 Subject: [PATCH] remove older CIs --- .appveyor.yml | 53 --------------------------------------------------- .travis.yml | 23 ---------------------- 2 files changed, 76 deletions(-) delete mode 100644 .appveyor.yml delete mode 100644 .travis.yml diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index d289fcc0..00000000 --- a/.appveyor.yml +++ /dev/null @@ -1,53 +0,0 @@ -# DO NOT CHANGE the "init" and "install" sections below - -# Download script file from GitHub -init: - ps: | - $ErrorActionPreference = "Stop" - Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" - Import-Module '..\appveyor-tool.ps1' - -install: - ps: Bootstrap - -cache: - - C:\RLibrary - -environment: - NOT_CRAN: true - # env vars that may need to be set, at least temporarily, from time to time - # see https://github.com/krlmlr/r-appveyor#readme for details - # USE_RTOOLS: true - # R_REMOTES_STANDALONE: true - -# Adapt as necessary starting from here - -build_script: - - travis-tool.sh install_deps - -test_script: - - travis-tool.sh run_tests - -on_failure: - - 7z a failure.zip *.Rcheck\* - - appveyor PushArtifact failure.zip - -artifacts: - - path: '*.Rcheck\**\*.log' - name: Logs - - - path: '*.Rcheck\**\*.out' - name: Logs - - - path: '*.Rcheck\**\*.fail' - name: Logs - - - path: '*.Rcheck\**\*.Rout' - name: Logs - - - path: '\*_*.tar.gz' - name: Bits - - - path: '\*_*.zip' - name: Bits - \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a66e16c4..00000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r - -language: r -cache: packages - -matrix: - include: - - r: devel - env: _R_CHECK_LENGTH_1_LOGIC2_=true - - r: release - pandoc: false - env: PANDOC='none' - - r: oldrel - - r: 3.3 - - r: 3.4 - - r: 3.5 - - r: 3.6 - - r: 4.0 - - -env: - global: - - _R_CHECK_FORCE_SUGGESTS_=TRUE