2020-01-21 22:05:06 +03:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2020-02-23 18:27:58 +03:00
|
|
|
- '.github/**'
|
|
|
|
- '!.github/workflows/**'
|
|
|
|
- '.travis.yml'
|
|
|
|
- '.gitignore'
|
2020-01-21 22:05:06 +03:00
|
|
|
- 'docs/**'
|
|
|
|
- 'README.md'
|
|
|
|
- 'LICENSE'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "**"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-ruby@v1
|
|
|
|
with:
|
2020-01-25 19:45:06 +03:00
|
|
|
ruby-version: '2.6.x'
|
2020-01-21 22:05:06 +03:00
|
|
|
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-01-25 19:45:06 +03:00
|
|
|
python-version: '3.7.x'
|
2020-01-21 22:05:06 +03:00
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Bundle Caching
|
|
|
|
id: bundle-cache
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: vendor/bundle
|
|
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gems-
|
|
|
|
|
2020-01-25 19:45:06 +03:00
|
|
|
- id: get-pip-cache-path
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=path::`pip show pip | grep "Location" | awk '{print $2}'`"
|
|
|
|
|
2020-01-21 22:05:06 +03:00
|
|
|
- name: Pip caching
|
|
|
|
id: pip-cache
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-01-25 19:45:06 +03:00
|
|
|
path: ${{ steps.get-pip-cache-path.outputs.path }}
|
2020-01-21 22:05:06 +03:00
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
|
|
|
|
- name: Install gnu-coreutils for macOS
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: |
|
|
|
|
brew install coreutils
|
|
|
|
|
|
|
|
- name: Bundle config
|
|
|
|
run: |
|
|
|
|
bundle config path vendor/bundle
|
|
|
|
|
|
|
|
- name: Bundle Install
|
|
|
|
if: steps.bundle-cache.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
bundle install
|
|
|
|
|
|
|
|
- name: Bundle Install locally
|
|
|
|
if: steps.bundle-cache.outputs.cache-hit == 'true'
|
|
|
|
run: |
|
|
|
|
bundle install --local
|
|
|
|
|
|
|
|
- name: Pip installing
|
|
|
|
if: steps.pip-cache.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
pip install -r _scripts/py/requirements.txt
|
|
|
|
|
|
|
|
- name: Build Site
|
|
|
|
run: |
|
|
|
|
bash tools/build.sh
|
|
|
|
|
|
|
|
- name: Test Site
|
|
|
|
run: |
|
|
|
|
bash tools/test.sh
|