File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 33source 'https://rubygems.org'
44git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
55
6- branch = ENV . fetch ( 'SOLIDUS_BRANCH' , 'master ' )
6+ branch = ENV . fetch ( 'SOLIDUS_BRANCH' , 'main ' )
77gem 'solidus' , github : 'solidusio/solidus' , branch : branch
88gem 'solidus_backend' , github : 'solidusio/solidus' , branch : branch
99
1010# The solidus_frontend gem has been pulled out since v3.2
1111if branch >= 'v3.2'
1212 gem 'solidus_frontend'
13- elsif branch == 'master '
13+ elsif branch == 'main '
1414 gem 'solidus_frontend' , github : 'solidusio/solidus_frontend'
1515else
1616 gem 'solidus_frontend' , github : 'solidusio/solidus' , branch : branch
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ if [ -n "$SOLIDUS_BRANCH" ]
3232then
3333 BRANCH=$SOLIDUS_BRANCH
3434else
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 "
3737fi
3838echo " ~~> Using branch $BRANCH of solidus"
3939
You can’t perform that action at this time.
0 commit comments