Skip to content

Commit bc0fca1

Browse files
authored
Merge pull request #570 from rails/flavorjones/ci-fix-202520
ci: Get green (August 2025 edition)
2 parents 4a2f954 + 611dae0 commit bc0fca1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
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
@@ -51,7 +51,7 @@ jobs:
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

test/integration/user_install_test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ set -o pipefail
66
set -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.
910
rm -f Gemfile.lock
1011
bundle remove actionmailer || true
1112
bundle remove rails || true
13+
rm -f Gemfile.lock
1214
bundle add rails --skip-install ${RAILSOPTS:-}
1315
bundle install --prefer-local
1416
bundle exec rails -v
@@ -21,6 +23,7 @@ pushd "My Workspace"
2123
function 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

test/integration/user_upgrade_test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ set -o pipefail
66
set -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.
910
rm -f Gemfile.lock
1011
bundle remove actionmailer || true
1112
bundle remove rails || true
13+
rm -f Gemfile.lock
1214
bundle add rails --skip-install ${RAILSOPTS:-}
1315
bundle 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)
2628
bundle remove rails --skip-install
29+
rm -f Gemfile.lock
2730
bundle add rails --skip-install ${RAILSOPTS:-}
2831

2932
# set up app with tailwindcss-rails v3 and tailwindcss-ruby v3

0 commit comments

Comments
 (0)