From 22922d13727b944968b2dc8f7b1c0cfcef546ac9 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Tue, 8 Feb 2022 15:17:17 -0500 Subject: [PATCH] Switch to github actions based cross-repo-tests --- .github/workflows/ci.yaml | 10 ++++++++++ .travis.yml | 23 ----------------------- Gemfile | 2 +- 3 files changed, 11 insertions(+), 24 deletions(-) create mode 100644 .github/workflows/ci.yaml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..e8751be2 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,10 @@ +name: Cross Repo Tests + +on: [pull_request] + +jobs: + manageiq: + uses: ManageIQ/manageiq-cross_repo/.github/workflows/manageiq_cross_repo.yaml@master + with: + test-repo: ManageIQ/manageiq@master + repos: ManageIQ/manageiq@master diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index cc416547..00000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: ruby -dist: bionic -rvm: -- 2.6.6 -cache: - directories: - - vendor/bundle -addons: - postgresql: '10' - apt: - packages: - - libarchive-dev -script: bundle exec manageiq-cross_repo -matrix: - fast_finish: true -branches: - only: - - master -env: - global: - - REPOS= - matrix: - - TEST_REPO=manageiq diff --git a/Gemfile b/Gemfile index 4eb4e610..5478a00b 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem "manageiq-cross_repo", "~> 1.1" +gem "manageiq-cross_repo", "~> 2.0"