summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moroney <darakian@gmail.com>2020-07-02 13:01:52 -0700
committerGitHub <noreply@github.com>2020-07-02 13:01:52 -0700
commit4c8a32d73a5407d0233451b1a89d9f4e9fb4371e (patch)
tree7bf4173a6f174ac3f9ec276e62f0ca5c3ec9c974
parent720de9111cbb3609fce1f67de1e5fab2a5f13419 (diff)
parent3fcbe2a4754901d5b7040ed3b6506f3ce177c9a7 (diff)
Merge pull request #25 from darakian/remove-appveyor-travis
Remove travis-ci and appveyor in favor of github actions
-rw-r--r--.travis.yml10
-rw-r--r--README.md5
-rw-r--r--appveyor.yml33
3 files changed, 0 insertions, 48 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 2fe7587..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-language: rust
-
-rust:
- - stable
-script:
- - cargo build --verbose --all
- - cargo test --verbose --all
- - cargo clean
- - cargo build --release --all
- - cargo test --verbose --all
diff --git a/README.md b/README.md
index a9b6457..5fecea3 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,3 @@
-### Linux Build Status
-[![Build Status](https://travis-ci.org/darakian/ddh.svg?branch=master)](https://travis-ci.org/darakian/ddh)
-### Windows Build Status
-[![Build status](https://ci.appveyor.com/api/projects/status/wv7tcfn0a7grjnv6?svg=true)](https://ci.appveyor.com/project/darakian/ddh)
-
# The **D**irectory **D**ifferential **h**Tool
DDH traverses input directories and their subdirectories. It also hashes files as needed and reports findings.
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 7b67294..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-version: 9.6.{build}
-image: Visual Studio 2017
-install:
-- cmd: >-
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
-
- rustup-init.exe -y
-
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
-
- rustc -V
-
- cargo -V
-build_script:
-- cmd: cargo build --release
-after_test:
-- cmd: >-
- cargo build --verbose
-
- cargo test
-artifacts:
-- path: target/release/ddh.exe
- name: ddh
-deploy:
-- provider: GitHub
- tag: win64-$(appveyor_build_version)
- description: DDH windows build
- auth_token:
- secure: WFr7LYW7Ios3cmmcG1YzM/etQ/xx1yGGlv37J3F9OhVcka5BdZCcTSdSo5MP08/k
- draft: false
- prerelease: false
- on:
- branch: release \ No newline at end of file