Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Skip all frontend specs #211

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,26 @@ commands:

jobs:
run-specs-with-postgres:
environment:
FRONTEND_SPECS: none
executor:
name: solidusio_extensions/postgres
ruby_version: "3.2"
steps:
- test-with-starter-frontend

run-specs-with-mysql:
environment:
FRONTEND_SPECS: none
executor:
name: solidusio_extensions/mysql
ruby_version: "3.1"
steps:
- test-with-starter-frontend

run-specs-with-sqlite:
environment:
FRONTEND_SPECS: none
executor:
name: solidusio_extensions/sqlite
ruby_version: "3.1"
Expand Down
2 changes: 1 addition & 1 deletion bin/dummy-app
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [ ! -d "dummy-app" ]; then
fi

cd ./dummy-app
unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-main}" --version '> 0.a'
unbundled bundle add solidus --github tvdeyen/solidus --branch "install-generator-skip-frontend-specs" --version '> 0.a'
unbundled bundle exec rake db:drop db:create
unbundled bundle exec rails generate solidus:install --auto-accept --payment-method=none --no-seed --no-sample "$@"
unbundled bundle add $extension_name --path ..
Expand Down