version 3.0.1 #101
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: Redmine Plugin | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
mat_env: | |
- '3.2 redmica/[email protected]' | |
- '3.1 redmica/[email protected]' | |
- '3.0 redmica/[email protected]' | |
- '2.7 redmica/[email protected]' | |
- '3.2 redmine/[email protected]' | |
- '3.1 redmine/[email protected]' | |
- '3.0 redmine/[email protected]' | |
- '2.7 redmine/[email protected]' | |
- '2.6 redmine/[email protected]' | |
- '2.6 redmine/[email protected]' | |
- '2.6 redmine/[email protected]' | |
- '2.5 redmine/[email protected]' | |
experimental: [false] | |
include: | |
- mat_env: '3.2 redmica/redmica@master' | |
experimental: true | |
steps: | |
- run: | | |
echo PLUGIN_NAME=$PLUGIN_NAME >> $GITHUB_ENV | |
echo RUBY_VERSION=$(echo $MAT_ENV | cut -d' ' -f1) >> $GITHUB_ENV | |
echo REDMINE_REPOSITORY=$(echo $MAT_ENV | cut -d' ' -f2 | cut -d@ -f1) >> $GITHUB_ENV | |
echo REDMINE_REF=$(echo $MAT_ENV | cut -d' ' -f2 | cut -d@ -f2) >> $GITHUB_ENV | |
env: | |
PLUGIN_NAME: redmine_hearts | |
MAT_ENV: ${{ matrix.mat_env }} | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: ./${{ env.PLUGIN_NAME }} | |
- name: Set up Redmine | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ env.REDMINE_REPOSITORY }} | |
ref: ${{ env.REDMINE_REF }} | |
path: ./redmine | |
- name: Copy the plugin files to plugin directory | |
run: cp -pr ./${{ env.PLUGIN_NAME }} ./redmine/plugins/${{ env.PLUGIN_NAME }} | |
- name: Create redmine/config/database.yml | |
uses: DamianReeves/[email protected] | |
with: | |
path: ./redmine/config/database.yml | |
contents: | | |
test: | |
adapter: sqlite3 | |
database: db/redmine_test.db | |
- uses: actions/cache@v3 | |
with: | |
path: ./redmine/vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('./redmine/**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: uninitialized constant Nokogiri::HTML4 Issue HACK ref. https://qiita.com/Mattani/items/c4bcc95a72b69d1c0489 | |
uses: DamianReeves/[email protected] | |
with: | |
path: ./redmine/Gemfile.local | |
contents: | | |
gem 'loofah', '~> 2.20.0' | |
if: contains(fromJSON('["2.6 redmine/[email protected]", "2.6 redmine/[email protected]", "2.5 redmine/[email protected]"]'), matrix.mat_env) | |
- name: Before script | |
run: | | |
cd ./redmine | |
bundle config --local path ${BUNDLE_PATH:-vendor/bundle} | |
bundle install | |
mv plugins plugins_bak | |
# Initialize redmine | |
bundle exec rake generate_secret_token | |
bundle exec rake db:migrate | |
bundle exec rake redmine:load_default_data | |
mv plugins_bak plugins | |
# Execute plugin's migration | |
bundle exec rake redmine:plugins NAME=${{ env.PLUGIN_NAME }} | |
env: | |
REDMINE_LANG: en | |
RAILS_ENV: test | |
# HACK sometimes fails login error, so retry 10 times | |
# HACK use shell script file to avoid interruption by error | |
- name: Prepare test script | |
uses: DamianReeves/[email protected] | |
with: | |
path: ./run_test.sh | |
contents: | | |
#!/bin/sh | |
cd ./redmine | |
for i in `seq 0 9`; do | |
# Execute plugin's test | |
bundle exec rake redmine:plugins:test NAME=${{ env.PLUGIN_NAME }} | |
retval=$? | |
if [ "$retval" -eq 0 ]; then | |
break | |
fi | |
echo "${i}-th test failed; Retry test..." | |
done | |
exit $retval | |
- name: Execute test | |
run: sh ./run_test.sh | |
env: | |
REDMINE_LANG: en | |
RAILS_ENV: test |