-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from AlchemyCMS/migrate-to-gh-actions-ci
Migrate to GH actions as CI
- Loading branch information
Showing
5 changed files
with
125 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters