-
Notifications
You must be signed in to change notification settings - Fork 636
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add github actions config As travis stopped be free for all - lets move to github actions. - Add ruby 3.0 to build matrix - using DymnaDB ready made action installer did not work - could work with some more time for investigation. But it works the old way. * Re-enable codecov * run github actions on ubuntu 20.04 * cleanup build matrix - remove old minor rails versions 5.0, 5.1 - remove EOL ruby version 2.5 * cleanup gemfiles and Appraisal remove unused gemsets * add truffleruby to github actions * use compact yaml syntax
- Loading branch information
Showing
5 changed files
with
87 additions
and
82 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
if: "contains(github.event.commits[0].message, '[ci skip]') == false" | ||
continue-on-error: ${{ matrix.allow_failure || false }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-20.04] | ||
ruby: [3.0, 2.7, 2.6, jruby-9.1.17.0, truffleruby] | ||
gemfile: [norails, rails_4.2, rails_4.2_mongoid_5, rails_5.2, rails_6.1] | ||
exclude: | ||
- ruby: 3.0 | ||
gemfile: rails_5.2 | ||
- ruby: 3.0 | ||
gemfile: rails_4.2 | ||
- ruby: 3.0 | ||
gemfile: rails_4.2_mongoid_5 | ||
- ruby: 2.7 | ||
gemfile: rails_5.2 | ||
- ruby: 2.7 | ||
gemfile: rails_4.2 | ||
- ruby: 2.7 | ||
gemfile: rails_4.2_mongoid_5 | ||
- ruby: 2.6 | ||
gemfile: rails_4.2_mongoid_5 | ||
- ruby: 2.6 | ||
gemfile: rails_4.2 | ||
- ruby: jruby-9.1.17.0 | ||
gemfile: norails | ||
- ruby: jruby-9.1.17.0 | ||
gemfile: rails_5.2 | ||
- ruby: jruby-9.1.17.0 | ||
gemfile: rails_6.1 | ||
- ruby: truffleruby | ||
gemfile: rails_4.2 | ||
- ruby: truffleruby | ||
gemfile: rails_4.2_mongoid_5 | ||
redis-version: [6] | ||
mongodb-version: [5] | ||
allow_failures: | ||
- false | ||
env: | ||
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | ||
ALLOW_FAILURES: "${{ matrix.allow_failures }}" | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: | | ||
mkdir /tmp/dynamodb | ||
wget -O - https://s3-ap-southeast-1.amazonaws.com/dynamodb-local-singapore/dynamodb_local_latest.tar.gz | tar xz --directory /tmp/dynamodb | ||
java -Djava.library.path=/tmp/dynamodb/DynamoDBLocal_lib -jar /tmp/dynamodb/DynamoDBLocal.jar -inMemory -delayTransientStatuses -port 30180 & | ||
mongod --version | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Setup project | ||
run: bundle install | ||
- name: Start Redis | ||
uses: supercharge/redis-github-action@1.2.0 | ||
with: | ||
redis-version: ${{ matrix.redis-version }} | ||
- name: Start MongoDB | ||
uses: supercharge/mongodb-github-action@1.6.0 | ||
with: | ||
mongodb-version: ${{ matrix.mongodb-version }} | ||
# - name: Setup DynamoDB Local | ||
# uses: rrainn/dynamodb-action@v2.0.0 | ||
# with: | ||
# port: 8000 | ||
# cors: '*' | ||
- name: Run specs | ||
run: bundle exec rspec spec | ||
- name: Run test | ||
run: bundle exec rake test | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
fail_ci_if_error: false |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.