File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3636 strategy :
3737 fail-fast : false
3838 matrix :
39- plat : ["ubuntu", "windows", " macos"]
39+ plat : [ "ubuntu", "macos" ]
4040 runs-on : ${{matrix.plat}}-latest
4141 steps :
4242 - uses : actions/checkout@v4
5151 strategy :
5252 fail-fast : false
5353 matrix :
54- plat : ["ubuntu", "macos"] # TODO: on windows the tailwind upgrader tests are failing
54+ plat : [ "ubuntu", "macos" ]
5555 runs-on : ${{matrix.plat}}-latest
5656 steps :
5757 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ set -o pipefail
66set -eux
77
88# set up dependencies
9+ gem install bcrypt # it's complicated, see Rails 7549ba77. can probably be removed once Rails 8.0 is EOL.
910rm -f Gemfile.lock
1011bundle remove actionmailer || true
1112bundle remove rails || true
13+ rm -f Gemfile.lock
1214bundle add rails --skip-install ${RAILSOPTS:- }
1315bundle install --prefer-local
1416bundle exec rails -v
@@ -21,6 +23,7 @@ pushd "My Workspace"
2123function prepare_deps {
2224 # make sure to use the same version of rails (e.g., install from git source if necessary)
2325 bundle remove rails --skip-install
26+ rm -f Gemfile.lock
2427 bundle add rails --skip-install ${RAILSOPTS:- }
2528
2629 # use the tailwindcss-rails under test
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ set -o pipefail
66set -eux
77
88# set up dependencies
9+ gem install bcrypt # it's complicated, see Rails 7549ba77. can probably be removed once Rails 8.0 is EOL.
910rm -f Gemfile.lock
1011bundle remove actionmailer || true
1112bundle remove rails || true
13+ rm -f Gemfile.lock
1214bundle add rails --skip-install ${RAILSOPTS:- }
1315bundle install --prefer-local
1416
@@ -24,6 +26,7 @@ pushd test-upgrade
2426
2527# make sure to use the same version of rails (e.g., install from git source if necessary)
2628bundle remove rails --skip-install
29+ rm -f Gemfile.lock
2730bundle add rails --skip-install ${RAILSOPTS:- }
2831
2932# set up app with tailwindcss-rails v3 and tailwindcss-ruby v3
You can’t perform that action at this time.
0 commit comments