Skip to content

Commit

Permalink
Merge pull request #122 from AlchemyCMS/migrate-to-gh-actions-ci
Browse files Browse the repository at this point in the history
Migrate to GH actions as CI
  • Loading branch information
tvdeyen authored Jan 13, 2021
2 parents 493bbbd + b109766 commit 0c7279d
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 30 deletions.
116 changes: 116 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
name: CI

on:
push:
branches:
- main
- 5.1-stable
- 5.0-stable
pull_request:
branches:
- main
- 5.1-stable
- 5.0-stable

jobs:
RSpec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alchemy_branch:
- 5.0-stable
- 5.1-stable
- main
ruby:
- '2.5.8'
- '2.6.6'
- '2.7.2'
database:
- mysql
- postgresql
env:
DB: ${{ matrix.database }}
DB_USER: alchemy_user
DB_PASSWORD: password
DB_HOST: '127.0.0.1'
RAILS_ENV: test
ALCHEMY_BRANCH: ${{ matrix.alchemy_branch }}
services:
postgres:
image: postgres:11
env:
POSTGRES_USER: ${{ env.DB_USER }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
POSTGRES_DB: alchemy_devise_dummy_test
ports: ['5432:5432']
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
mysql:
image: mysql:latest
ports: ['3306:3306']
env:
MYSQL_USER: ${{ env.DB_USER }}
MYSQL_PASSWORD: ${{ env.DB_PASSWORD }}
MYSQL_DATABASE: alchemy_devise_dummy_test
MYSQL_ROOT_PASSWORD: password
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- uses: actions/[email protected]
- name: Set up Ruby
uses: actions/[email protected]
with:
ruby-version: ${{ matrix.ruby }}
- name: Restore apt cache
id: apt-cache
uses: actions/[email protected]
with:
path: /home/runner/apt/cache
key: ${{ runner.os }}-apt-${{ matrix.database }}
restore-keys: |
${{ runner.os }}-apt-
- name: Install Postgres headers
if: matrix.database == 'postgresql'
run: |
mkdir -p /home/runner/apt/cache
sudo apt update -qq
sudo apt install -qq --fix-missing libpq-dev -o dir::cache::archives="/home/runner/apt/cache"
sudo chown -R runner /home/runner/apt/cache
- name: Install MySQL headers
if: matrix.database == 'mysql'
run: |
mkdir -p /home/runner/apt/cache
sudo apt update -qq
sudo apt install -qq --fix-missing libmysqlclient-dev -o dir::cache::archives="/home/runner/apt/cache"
sudo chown -R runner /home/runner/apt/cache
- name: Install bundler
run: |
gem install bundler
- name: Restore Ruby Gems cache
id: cache
uses: actions/[email protected]
with:
path: vendor/bundle
key: ${{ runner.os }}-bundle-${{ matrix.ruby }}-${{ matrix.alchemy_branch }}-${{ matrix.database }}-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-bundle-
- name: Install bundle
timeout-minutes: 10
run: |
bundle install --jobs 4 --retry 3 --path vendor/bundle
- name: Restore node modules cache
id: yarn-cache
uses: actions/[email protected]
with:
path: spec/dummy/node_modules
key: ${{ runner.os }}-yarn-dummy-${{ hashFiles('./package.json') }}
restore-keys: |
${{ runner.os }}-yarn-dummy-
- name: Prepare database
run: bundle exec rake alchemy:spec:prepare
- name: Run tests
run: bundle exec rspec
- uses: actions/upload-artifact@main
if: failure()
with:
name: Screenshots
path: spec/dummy/tmp/screenshots
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ group :test do
gem "sqlite3" if ENV["DB"].nil? || ENV["DB"] == "sqlite"
gem "mysql2" if ENV["DB"] == "mysql"
gem "pg", "~> 1.0" if ENV["DB"] == "postgresql"
if ENV["TRAVIS"]
gem "sassc", "~> 2.1.0"
gem "codeclimate-test-reporter", "~> 1.0", require: false
end
end

gem "github_fast_changelog", require: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Devise based authentication for AlchemyCMS

[![Build Status](https://secure.travis-ci.com/AlchemyCMS/alchemy-devise.svg?branch=main)](http://travis-ci.com/AlchemyCMS/alchemy-devise)
[![Build Status](https://github.com/AlchemyCMS/alchemy-devise/workflows/CI/badge.svg?branch=main)](https://github.com/AlchemyCMS/alchemy-devise/actions)

[![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise) [![security](https://hakiri.io/github/AlchemyCMS/alchemy-devise/main.svg)](https://hakiri.io/github/AlchemyCMS/alchemy-devise/main)

Expand Down
14 changes: 8 additions & 6 deletions spec/dummy/config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,25 @@ sqlite: &sqlite

mysql: &mysql
adapter: mysql2
username: root
password:
encoding: utf8mb4
username: <%= ENV["DB_USER"] %>
password: <%= ENV["DB_PASSWORD"] %>
database: alchemy_devise_dummy_<%= Rails.env %>

postgresql: &postgresql
adapter: postgresql
<% if ENV['CI'] %>
username: postgres
<% if ENV["DB_USER"] %>
username: <%= ENV["DB_USER"] %>
password: <%= ENV["DB_PASSWORD"] %>
<% end %>
database: alchemy_devise_dummy_<%= Rails.env %>
min_messages: ERROR

defaults: &defaults
pool: 5
timeout: 5000
host: localhost
<<: *<%= ENV['DB'] || "sqlite" %>
host: <%= ENV["DB_HOST"] || "localhost" %>
<<: *<%= ENV["DB"] || "sqlite" %>

development:
<<: *defaults
Expand Down

0 comments on commit 0c7279d

Please sign in to comment.