From e463366df0a7db7c78120fe0d8ec0be18ea9c786 Mon Sep 17 00:00:00 2001 From: Tom Yearke Date: Thu, 28 Sep 2017 16:19:21 -0400 Subject: [PATCH] Update from xdmod-travis to xdmod-qa --- .github/CONTRIBUTING.md | 2 +- .gitignore | 4 ++-- .travis.yml | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index cc1d1c2..d070ed2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -32,7 +32,7 @@ chance of keeping on top of things. ## Style Guidelines (linting) -* If there exists a linter config file for some aspect of the project (e.g. `.eslintrc.json`, `.editorconfig`, `.remarkrc`) in this repo or [`xdmod-travis`](https://github.com/ubccr/xdmod-travis), please use the associated linter with the config. +* If there exists a linter config file for some aspect of the project (e.g. `.eslintrc.json`, `.editorconfig`, `.remarkrc`) in this repo or [`xdmod-qa`](https://github.com/ubccr/xdmod-qa), please use the associated linter with the config. * If there is no applicable linter or linter config when editing a file, try to stick with its current style. * Make sure that you fix any errors found by all configured linters (e.g. remark-lint, ESLint, phpcs). * If an error or warning can't be fixed, please add comments to the pull/commit explaining why. diff --git a/.gitignore b/.gitignore index 88350dc..acb6997 100644 --- a/.gitignore +++ b/.gitignore @@ -308,5 +308,5 @@ configuration/aggregation_meta/ # eclipse project files /.project -# External Travis testing assets -/.travis/ +# External QA assets +/.qa/ diff --git a/.travis.yml b/.travis.yml index 238fd9c..c793d00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,11 +22,11 @@ cache: - /tmp/pear/cache - $XDMOD_TEST_ARTIFACTS_MIRROR -# Obtain the shared Travis assets before using them. -before_install: git clone --depth=1 --branch="v1" https://github.com/ubccr/xdmod-travis.git .travis +# Obtain the shared QA assets before using them. +before_install: git clone --depth=1 --branch="v1" https://github.com/ubccr/xdmod-qa.git .qa # Delegate the installation step to the shared Travis installation script -install: .travis/install.sh +install: .qa/travis/install.sh # Delegate the build step to the shared Travis build script -script: .travis/build.sh +script: .qa/travis/build.sh