2021-04-16 10:07:32 +02:00
|
|
|
name: Plugin Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-10-05 08:33:27 +02:00
|
|
|
- stable
|
2021-04-16 10:07:32 +02:00
|
|
|
- master
|
|
|
|
- main
|
|
|
|
pull_request:
|
2021-06-08 12:40:00 +02:00
|
|
|
schedule:
|
2021-06-26 15:37:08 +02:00
|
|
|
- cron: '0 */12 * * *'
|
2021-04-16 10:07:32 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: ${{ matrix.build_type }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 60
|
|
|
|
|
|
|
|
env:
|
|
|
|
DISCOURSE_HOSTNAME: www.example.com
|
|
|
|
RUBY_GLOBAL_METHOD_CACHE_SIZE: 131072
|
|
|
|
RAILS_ENV: test
|
|
|
|
PGHOST: localhost
|
|
|
|
PGUSER: discourse
|
|
|
|
PGPASSWORD: discourse
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
build_type: ["backend", "frontend"]
|
|
|
|
ruby: ["2.7"]
|
|
|
|
postgres: ["12"]
|
2022-02-16 15:14:56 +01:00
|
|
|
redis: ["6.x"]
|
2021-04-16 10:07:32 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:${{ matrix.postgres }}
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: discourse
|
|
|
|
POSTGRES_PASSWORD: discourse
|
|
|
|
options: >-
|
|
|
|
--mount type=tmpfs,destination=/var/lib/postgresql/data
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
steps:
|
2022-02-16 15:14:56 +01:00
|
|
|
- uses: haya14busa/action-cond@v1
|
|
|
|
id: discourse_branch
|
|
|
|
with:
|
|
|
|
cond: ${{ github.base_ref == 'stable' }}
|
|
|
|
if_true: "stable"
|
|
|
|
if_false: "tests-passed"
|
|
|
|
|
2021-04-16 10:07:32 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: discourse/discourse
|
2022-02-16 15:14:56 +01:00
|
|
|
ref: ${{ steps.discourse_branch.outputs.value }}
|
2021-04-16 10:07:32 +02:00
|
|
|
fetch-depth: 1
|
|
|
|
|
2021-06-26 15:37:08 +02:00
|
|
|
- name: Fetch Repo Name
|
|
|
|
id: repo-name
|
|
|
|
run: echo "::set-output name=value::$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')"
|
2021-06-08 12:40:00 +02:00
|
|
|
|
2021-04-16 10:07:32 +02:00
|
|
|
- name: Install plugin
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2021-06-26 15:37:08 +02:00
|
|
|
path: plugins/${{ steps.repo-name.outputs.value }}
|
2022-02-16 15:14:56 +01:00
|
|
|
ref: "${{ github.base_ref }}"
|
2021-04-16 10:07:32 +02:00
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Setup Git
|
|
|
|
run: |
|
|
|
|
git config --global user.email "ci@ci.invalid"
|
|
|
|
git config --global user.name "Discourse CI"
|
|
|
|
|
|
|
|
- name: Setup packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -yqq install postgresql-client libpq-dev gifsicle jpegoptim optipng jhead
|
|
|
|
wget -qO- https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-pngquant | sudo sh
|
|
|
|
|
|
|
|
- name: Update imagemagick
|
|
|
|
if: matrix.build_type == 'backend'
|
|
|
|
run: |
|
|
|
|
wget https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-imagemagick
|
|
|
|
chmod +x install-imagemagick
|
|
|
|
sudo ./install-imagemagick
|
|
|
|
|
|
|
|
- name: Setup redis
|
|
|
|
uses: shogo82148/actions-setup-redis@v1
|
|
|
|
with:
|
|
|
|
redis-version: ${{ matrix.redis }}
|
|
|
|
|
|
|
|
- name: Setup ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
ruby-version: ${{ matrix.ruby }}
|
|
|
|
bundler-cache: true
|
|
|
|
|
|
|
|
- name: Lint English locale
|
|
|
|
if: matrix.build_type == 'backend'
|
2021-06-26 15:37:08 +02:00
|
|
|
run: bundle exec ruby script/i18n_lint.rb "plugins/${{ steps.repo-name.outputs.value }}/locales/{client,server}.en.yml"
|
2021-04-16 10:07:32 +02:00
|
|
|
|
|
|
|
- name: Get yarn cache directory
|
|
|
|
id: yarn-cache-dir
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
|
|
|
|
- name: Yarn cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-${{ matrix.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Yarn install
|
|
|
|
run: yarn install --dev
|
|
|
|
|
|
|
|
- name: Migrate database
|
|
|
|
run: |
|
|
|
|
bin/rake db:create
|
|
|
|
bin/rake db:migrate
|
|
|
|
|
2021-05-17 10:30:23 +02:00
|
|
|
- name: Plugin RSpec with Coverage
|
2022-03-16 14:09:23 +01:00
|
|
|
if: matrix.build_type == 'backend'
|
2022-03-12 14:00:07 +01:00
|
|
|
run: |
|
|
|
|
if [ -e plugins/${{ steps.repo-name.outputs.value }}/.simplecov ]
|
2022-03-12 14:26:27 +01:00
|
|
|
then
|
2022-03-12 14:00:07 +01:00
|
|
|
cp plugins/${{ steps.repo-name.outputs.value }}/.simplecov .simplecov
|
|
|
|
export COVERAGE=1
|
|
|
|
fi
|
|
|
|
bin/rake plugin:spec[${{ steps.repo-name.outputs.value }}]
|
2021-04-16 10:07:32 +02:00
|
|
|
|
|
|
|
- name: Plugin QUnit
|
2022-03-16 14:09:23 +01:00
|
|
|
if: matrix.build_type == 'frontend'
|
2022-04-08 16:35:40 +02:00
|
|
|
run: QUNIT_SKIP_CORE=1 LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 bundle exec rake "qunit:test['1200000','/w/qunit']"
|
2021-04-16 10:07:32 +02:00
|
|
|
timeout-minutes: 30
|