Skip to content

Commit 221ff38

Browse files
committed
Adopt CircleCI instead of Travis
1 parent f23b4d3 commit 221ff38

3 files changed

Lines changed: 36 additions & 11 deletions

File tree

.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2.1
2+
3+
orbs:
4+
# Always take the latest version of the orb, this allows us to
5+
# run specs against Solidus supported versions only without the need
6+
# to change this configuration every time a Solidus version is released
7+
# or goes EOL.
8+
solidusio_extensions: solidusio/extensions@volatile
9+
10+
jobs:
11+
run-specs-with-postgres:
12+
executor: solidusio_extensions/postgres
13+
steps:
14+
- solidusio_extensions/run-tests
15+
run-specs-with-mysql:
16+
executor: solidusio_extensions/mysql
17+
steps:
18+
- solidusio_extensions/run-tests
19+
20+
workflows:
21+
"Run specs on supported Solidus versions":
22+
jobs:
23+
- run-specs-with-postgres
24+
- run-specs-with-mysql
25+
"Weekly run specs against master":
26+
triggers:
27+
- schedule:
28+
cron: "0 0 * * 4" # every Thursday
29+
filters:
30+
branches:
31+
only:
32+
- master
33+
jobs:
34+
- run-specs-with-postgres
35+
- run-specs-with-mysql

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Solidus Internationalization
22

3-
[![Build Status](https://travis-ci.org/solidusio/solidus_i18n.svg?branch=master)](https://travis-ci.org/solidusio/solidus_i18n)
3+
[![CircleCI](https://circleci.com/gh/solidusio/solidus_i18n.svg?style=svg)](https://circleci.com/gh/solidusio/solidus_i18n)
44
[![Code Climate](https://codeclimate.com/github/solidusio/solidus_i18n/badges/gpa.svg)](https://codeclimate.com/github/solidusio/solidus_i18n)
55
[![Gem Version](https://badge.fury.io/rb/solidus_i18n.svg)](https://badge.fury.io/rb/solidus_i18n)
66

0 commit comments

Comments
 (0)