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 36
36
strategy :
37
37
fail-fast : false
38
38
matrix :
39
- plat : ["ubuntu", "windows", " macos"]
39
+ plat : [ "ubuntu", "macos" ]
40
40
runs-on : ${{matrix.plat}}-latest
41
41
steps :
42
42
- uses : actions/checkout@v4
51
51
strategy :
52
52
fail-fast : false
53
53
matrix :
54
- plat : ["ubuntu", "macos"] # TODO: on windows the tailwind upgrader tests are failing
54
+ plat : [ "ubuntu", "macos" ]
55
55
runs-on : ${{matrix.plat}}-latest
56
56
steps :
57
57
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ set -o pipefail
6
6
set -eux
7
7
8
8
# set up dependencies
9
+ gem install bcrypt # it's complicated, see Rails 7549ba77. can probably be removed once Rails 8.0 is EOL.
9
10
rm -f Gemfile.lock
10
11
bundle remove actionmailer || true
11
12
bundle remove rails || true
13
+ rm -f Gemfile.lock
12
14
bundle add rails --skip-install ${RAILSOPTS:- }
13
15
bundle install --prefer-local
14
16
bundle exec rails -v
@@ -21,6 +23,7 @@ pushd "My Workspace"
21
23
function prepare_deps {
22
24
# make sure to use the same version of rails (e.g., install from git source if necessary)
23
25
bundle remove rails --skip-install
26
+ rm -f Gemfile.lock
24
27
bundle add rails --skip-install ${RAILSOPTS:- }
25
28
26
29
# use the tailwindcss-rails under test
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ set -o pipefail
6
6
set -eux
7
7
8
8
# set up dependencies
9
+ gem install bcrypt # it's complicated, see Rails 7549ba77. can probably be removed once Rails 8.0 is EOL.
9
10
rm -f Gemfile.lock
10
11
bundle remove actionmailer || true
11
12
bundle remove rails || true
13
+ rm -f Gemfile.lock
12
14
bundle add rails --skip-install ${RAILSOPTS:- }
13
15
bundle install --prefer-local
14
16
@@ -24,6 +26,7 @@ pushd test-upgrade
24
26
25
27
# make sure to use the same version of rails (e.g., install from git source if necessary)
26
28
bundle remove rails --skip-install
29
+ rm -f Gemfile.lock
27
30
bundle add rails --skip-install ${RAILSOPTS:- }
28
31
29
32
# set up app with tailwindcss-rails v3 and tailwindcss-ruby v3
You can’t perform that action at this time.
0 commit comments