Skip to content

(PA-5655) Native compile pxp-agent on Solaris 11 SPARC #520

(PA-5655) Native compile pxp-agent on Solaris 11 SPARC

(PA-5655) Native compile pxp-agent on Solaris 11 SPARC #520

Workflow file for this run

---
name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: ${{ matrix.cfg.check }}
strategy:
matrix:
cfg:
- {check: rubocop, os: ubuntu-latest, ruby: 2.7}
- {check: commits, os: ubuntu-latest, ruby: 2.7}
runs-on: ${{ matrix.cfg.os }}
steps:
- name: Checkout current PR
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install ruby version ${{ matrix.cfg.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.cfg.ruby }}
- name: Install bundler and gems
run: |
gem install bundler
bundle config set without packaging documentation
bundle install --jobs 4 --retry 3
- name: Run ${{ matrix.cfg.check }} check
run: bundle exec rake ${{ matrix.cfg.check }}