Skip to content

Commit

Permalink
Switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Feb 6, 2022
1 parent b3333bf commit 4c6c538
Show file tree
Hide file tree
Showing 10 changed files with 75 additions and 95 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.7'
node-version:
- 12
test-suite:
- spec
- spec:routes
- spec:javascript
- spec:compile
- spec:jest
- spec:debride
include:
- ruby-version: '2.6'
node-version: 12
test-suite: spec
services:
postgres:
image: manageiq/postgresql:10
env:
POSTGRESQL_USER: root
POSTGRESQL_PASSWORD: smartvm
POSTGRESQL_DATABASE: vmdb_test
options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
env:
TEST_SUITE: ${{ matrix.test-suite }}
PGHOST: localhost
PGPASSWORD: smartvm
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v2
- name: Set up system
run: bin/before_install
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: yarn
registry-url: https://npm.manageiq.org/
- name: Prepare tests
run: bin/setup
- name: Run tests
run: bundle exec rake
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }}
continue-on-error: true
uses: paambaati/codeclimate-action@v3.0.0
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ManageIQ::UI::Classic

[![Gem Version](https://badge.fury.io/rb/manageiq-ui-classic.svg)](http://badge.fury.io/rb/manageiq-ui-classic)
[![Build Status](https://travis-ci.com/ManageIQ/manageiq-ui-classic.svg?branch=master)](https://travis-ci.com/github/ManageIQ/manageiq-ui-classic)
[![CI](https://github.com/ManageIQ/manageiq-ui-classic/actions/workflows/ci.yaml/badge.svg)](https://github.com/ManageIQ/manageiq-ui-classic/actions/workflows/ci.yaml)
[![Code Climate](https://codeclimate.com/github/ManageIQ/manageiq-ui-classic.svg)](https://codeclimate.com/github/ManageIQ/manageiq-ui-classic)
[![Test Coverage](https://codeclimate.com/github/ManageIQ/manageiq-ui-classic/badges/coverage.svg)](https://codeclimate.com/github/ManageIQ/manageiq-ui-classic/coverage)
[![Coverage Status](https://coveralls.io/repos/github/ManageIQ/manageiq-ui-classic/badge.svg?branch=master)](https://coveralls.io/github/ManageIQ/manageiq-ui-classic?branch=master)
Expand Down
16 changes: 0 additions & 16 deletions bin/ci/after_script.sh

This file was deleted.

7 changes: 0 additions & 7 deletions bin/ci/before_install.sh

This file was deleted.

7 changes: 0 additions & 7 deletions bin/ci/before_script.sh

This file was deleted.

2 changes: 1 addition & 1 deletion bin/ci/dead_method_check.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Run only against PR that is based on master
if [ "$TRAVIS_PULL_REQUEST" != "false" -a "$TRAVIS_BRANCH" = "master" ]; then
if [ "$GITHUB_BASE_REF" = "master" ]; then
OLD=`mktemp`
NEW=`mktemp`

Expand Down
22 changes: 8 additions & 14 deletions bin/setup
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
#!/usr/bin/env ruby
require 'pathname'
require 'fileutils'

require "pathname"

gem_root = Pathname.new(__dir__).join("..")
spec_manageiq = gem_root.join("spec/manageiq")
system(gem_root.join("bin/before_install").to_s)

if ENV.key?("MANAGEIQ_REPO")
manageiq_repo = Pathname.new(ENV["MANAGEIQ_REPO"])
puts "== Symlinking spec/manageiq to #{manageiq_repo}"
require gem_root.join("spec/manageiq/lib/manageiq/environment")
ManageIQ::Environment.manageiq_plugin_setup(gem_root)

FileUtils.rm_rf(spec_manageiq.expand_path)
FileUtils.ln_s(manageiq_repo.expand_path, spec_manageiq.expand_path)
elsif !spec_manageiq.exist?
puts "== Cloning manageiq sample app =="
system "git clone https://github.com/ManageIQ/manageiq.git --branch master --depth 1 spec/manageiq"
if %w[spec:compile spec:javascript spec:jest].include?(ENV["TEST_SUITE"])
puts "\n== Updating UI assets =="
ManageIQ::Environment.update_ui
end

require gem_root.join("spec/manageiq/lib/manageiq/environment").to_s
ManageIQ::Environment.manageiq_plugin_setup(gem_root)
4 changes: 2 additions & 2 deletions lib/tasks/manageiq/ui_tasks.rake
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ end
# compile and clobber when running assets:* tasks
if Rake::Task.task_defined?("assets:precompile")
Rake::Task["assets:precompile"].enhance do
Rake::Task["webpack:compile"].invoke unless ENV["TRAVIS"]
Rake::Task["webpack:compile"].invoke unless ENV["CI"]
end

Rake::Task["assets:precompile"].actions.each do |action|
Expand All @@ -97,7 +97,7 @@ end

if Rake::Task.task_defined?("assets:clobber")
Rake::Task["assets:clobber"].enhance do
Rake::Task["webpack:clobber"].invoke unless ENV["TRAVIS"]
Rake::Task["webpack:clobber"].invoke unless ENV["CI"]
end

Rake::Task["assets:clobber"].actions.each do |action|
Expand Down
2 changes: 1 addition & 1 deletion manageiq-ui-classic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "guard-rspec", '~> 4.7.3'
s.add_development_dependency "manageiq-style"
s.add_development_dependency "rails-controller-testing", '~> 1.0.2'
s.add_development_dependency "simplecov"
s.add_development_dependency "simplecov", ">= 0.21.2"

# core because jasmine gem depends on major version only, meaning breakages when not the latest
s.add_development_dependency "jasmine", "~> 3.4.0"
Expand Down

0 comments on commit 4c6c538

Please sign in to comment.