Update pipeline #65
Workflow file for this run
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
name: CI | |
on: [push, pull_request] | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: postgresql://postgres:@localhost/test | |
DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL: true | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Setup Bundler | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundle lock --update | |
- name: Cache gems | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Setup | |
run: bundle install --jobs=3 --retry=3 | |
- name: Run rubocop | |
run: bundle exec rubocop | |
test: | |
runs-on: ubuntu-latest | |
needs: rubocop | |
services: | |
postgres: | |
image: postgres:12.1 | |
ports: ["5432:5432"] | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
foreman-core-branch: | |
- 3.0-stable | |
- 3.1-stable | |
- 3.2-stable | |
- 3.3-stable | |
- 3.4-stable | |
- 3.5-stable | |
- 3.6-stable | |
- 3.7-stable | |
- develop | |
node-version: [12] | |
ruby-version: [2.7] | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install build-essential libcurl4-openssl-dev libvirt-dev ruby-libvirt zlib1g-dev libpq-dev | |
- uses: actions/checkout@v3 | |
with: | |
repository: theforeman/foreman | |
ref: ${{ matrix.foreman-core-branch }} | |
fetch-depth: 0 | |
- name: Apply patches for Foreman < 3.5 | |
if: ${{ contains(fromJson('["3.0-stable", "3.1-stable", "3.2-stable", "3.3-stable", "3.4-stable"]'), matrix.foreman-core-branch) }} | |
run: | | |
git cherry-pick -n 1c3a4155f286352e0abbf0d0b298e47e81c2d6c5 # https://github.com/theforeman/foreman/pull/9781 | |
- uses: actions/checkout@v3 | |
with: | |
path: foreman_omaha | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup Bundler | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundle config set without journald development console mysql2 sqlite | |
echo "gem 'foreman_omaha', path: './foreman_omaha'" > bundler.d/foreman_omaha.local.rb | |
bundle lock --update | |
- name: Cache gems | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Setup Plugin | |
run: | | |
bundle install --jobs=3 --retry=3 | |
bundle exec rake db:create | |
bundle exec rake db:migrate | |
npm install | |
bundle exec rake webpack:compile | |
- name: Run plugin tests | |
run: | | |
bundle exec rake test:foreman_omaha | |
bundle exec rake test TEST="test/unit/foreman/access_permissions_test.rb" | |
- name: Precompile plugin assets | |
run: bundle exec rake 'plugin:assets:precompile[foreman_omaha]' | |
env: | |
RAILS_ENV: production |