Skip to content

Commit b3e431c

Browse files
Merge pull request #245 from solidusio/waiting-for-dev/solidus_main
Adapt to new Solidus default branch name
2 parents b969ccd + 4843eee commit b3e431c

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
parameters:
1616
solidus:
1717
type: string
18-
default: master
18+
default: main
1919
db:
2020
type: string
2121
default: "postgres"
@@ -43,7 +43,7 @@ workflows:
4343
- run-specs:
4444
name: &name "run-specs-solidus-<< matrix.solidus >>-ruby-<< matrix.ruby >>-db-<< matrix.db >>"
4545
matrix:
46-
parameters: { solidus: ["master"], ruby: ["3.2"], db: ["postgres"] }
46+
parameters: { solidus: ["main"], ruby: ["3.2"], db: ["postgres"] }
4747
- run-specs:
4848
name: *name
4949
matrix:
@@ -54,7 +54,7 @@ workflows:
5454
parameters: { solidus: ["older"], ruby: ["3.0"], db: ["sqlite"] }
5555
- lint-code
5656

57-
"Weekly run specs against master":
57+
"Weekly run specs against main":
5858
triggers:
5959
- schedule:
6060
cron: "0 0 * * 4" # every Thursday
@@ -66,7 +66,7 @@ workflows:
6666
- run-specs:
6767
name: *name
6868
matrix:
69-
parameters: { solidus: ["master"], ruby: ["3.2"], db: ["postgres"] }
69+
parameters: { solidus: ["main"], ruby: ["3.2"], db: ["postgres"] }
7070
- run-specs:
7171
name: *name
7272
matrix:

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
6+
branch = ENV.fetch('SOLIDUS_BRANCH', 'main')
77
gem 'solidus', github: 'solidusio/solidus', branch: branch
88
gem 'solidus_backend', github: 'solidusio/solidus', branch: branch
99

1010
# The solidus_frontend gem has been pulled out since v3.2
1111
if branch >= 'v3.2'
1212
gem 'solidus_frontend'
13-
elsif branch == 'master'
13+
elsif branch == 'main'
1414
gem 'solidus_frontend', github: 'solidusio/solidus_frontend'
1515
else
1616
gem 'solidus_frontend', github: 'solidusio/solidus', branch: branch

bin/sandbox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ if [ -n "$SOLIDUS_BRANCH" ]
3232
then
3333
BRANCH=$SOLIDUS_BRANCH
3434
else
35-
echo "~~> Use 'export SOLIDUS_BRANCH=[master|v3.2|...]' to control the Solidus branch"
36-
BRANCH="master"
35+
echo "~~> Use 'export SOLIDUS_BRANCH=[main|v3.2|...]' to control the Solidus branch"
36+
BRANCH="main"
3737
fi
3838
echo "~~> Using branch $BRANCH of solidus"
3939

0 commit comments

Comments
 (0)