From 1425459affa5174a15dad114b1a390d1b1fd6165 Mon Sep 17 00:00:00 2001 From: OpenByte Date: Wed, 29 Jun 2022 02:05:38 +0200 Subject: [PATCH] Remove old ci config --- .travis.yml | 45 --------------------------------------------- appveyor.yml | 19 ------------------- 2 files changed, 64 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index fe121f9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,45 +0,0 @@ -language: rust -sudo: required -cache: cargo -rust: - - 1.24.0 - - stable - - nightly - - beta -os: - - linux - - osx -env: - - ARCH=x86_64 - - ARCH=i686 - -matrix: - allow_failures: - - rust: 1.24.0 - - rust: nightly - -addons: - apt: - packages: - - libcurl4-openssl-dev - - libelf-dev - - libdw-dev - - cmake - - gcc - - binutils-dev - - libiberty-dev - -after_success: | - wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz && - tar xzf master.tar.gz && - cd kcov-master && - mkdir build && - cd build && - cmake .. && - make && - make install DESTDIR=../../kcov-build && - cd ../.. && - rm -rf kcov-master && - for file in target/debug/dlopen-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done && - bash <(curl -s https://codecov.io/bash) && - echo "Uploaded code coverage" \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 92342f9..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,19 +0,0 @@ -environment: - matrix: - - TARGET: nightly-x86_64-pc-windows-msvc - - TARGET: nightly-i686-pc-windows-msvc - - TARGET: nightly-x86_64-pc-windows-gnu - - TARGET: nightly-i686-pc-windows-gnu - - TARGET: 1.24.0-x86_64-pc-windows-msvc - - TARGET: 1.24.0-i686-pc-windows-msvc - - TARGET: 1.24.0-x86_64-pc-windows-gnu - - TARGET: 1.24.0-i686-pc-windows-gnu -install: - - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust.exe" - - ps: .\rust.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null - - ps: $env:PATH="$env:PATH;C:\rust\bin" - - rustc -vV - - cargo -vV -build: off -test_script: - - cargo test \ No newline at end of file